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

:root {
  --black: #0A0A0A;
  --white: #FAFAF7;
  --lime: #C8F542;
  --lime-dark: #9BC72E;
  --gray: #1C1C1C;
  --gray-mid: #2E2E2E;
  --text-muted: #888;
  --border: rgba(255,255,255,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 5%;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 1.3rem; letter-spacing: -0.5px;
  text-decoration: none; color: var(--white);
}
.logo span { color: var(--lime); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active { color: var(--lime); }
.nav-cta {
  background: var(--lime); color: var(--black);
  border: none; padding: 0.55rem 1.3rem;
  border-radius: 100px; font-weight: 600; font-size: 0.85rem;
  cursor: pointer; text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  font-family: 'DM Sans', sans-serif;
}
.nav-cta:hover { background: var(--lime-dark); transform: scale(1.03); }

/* TYPOGRAPHY */
.section-tag {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--lime); margin-bottom: 1rem;
}
h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px; margin-bottom: 1.5rem;
}
h1 em, h2 em { font-style: normal; color: var(--lime); }
h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15;
  letter-spacing: -1px; margin-bottom: 1rem;
}
h3 { font-family: 'Syne', sans-serif; }

section { padding: 6rem 5%; }

/* BUTTONS */
.btn-primary {
  background: var(--lime); color: var(--black);
  padding: 0.85rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--lime-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--white);
  padding: 0.85rem 2rem; border-radius: 100px;
  font-weight: 500; font-size: 0.95rem;
  text-decoration: none; border: 1px solid var(--border);
  transition: all 0.2s; font-family: 'DM Sans', sans-serif;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.3); background: var(--gray); }

/* MARQUEE */
.marquee-section {
  padding: 1.5rem 0; overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--gray);
}
.marquee-track {
  display: flex; gap: 3rem; white-space: nowrap;
  animation: marquee 22s linear infinite;
}
.marquee-track span {
  font-family: 'Syne', sans-serif;
  font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--text-muted); flex-shrink: 0;
  display: flex; align-items: center; gap: 1rem;
}
.marquee-track span::after { content: '✦'; color: var(--lime); font-size: 0.65rem; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-links { display: flex; gap: 2rem; list-style: none; flex-wrap: wrap; }
.footer-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.82rem; transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 0.78rem; color: var(--text-muted); }

/* PAGE HERO (inner pages) */
.page-hero {
  min-height: 50vh;
  display: flex; flex-direction: column;
  justify-content: center; padding: 9rem 5% 4rem;
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position: absolute; top: -30%; right: -5%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,245,66,0.1) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}

/* CTA BANNER */
.cta-banner {
  margin: 0 5% 6rem;
  background: var(--lime);
  border-radius: 24px; padding: 4rem 3rem;
  text-align: center;
}
.cta-banner h2 { color: var(--black); letter-spacing: -1px; margin-bottom: 0.8rem; }
.cta-banner p { color: rgba(10,10,10,0.6); margin-bottom: 2rem; }
.btn-black {
  background: var(--black); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s;
  font-family: 'DM Sans', sans-serif;
  display: inline-block;
}
.btn-black:hover { background: #1c1c1c; transform: translateY(-2px); }

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  h1 { font-size: 2.4rem; letter-spacing: -1px; }
  h2 { font-size: 1.8rem; }
  section { padding: 4rem 5%; }
  footer { flex-direction: column; text-align: center; }
  .cta-banner { padding: 2.5rem 1.5rem; margin: 0 1rem 4rem; }
}

/* ============================================
   TEXT ALIGNMENT — ALL PAGES
   ============================================ */
.page-hero h1,
.hero h1,
section h2,
.section-tag,
.page-hero p {
  text-align: left;
}

/* Center specific CTA sections */
.cta-banner h2,
.cta-banner p {
  text-align: center;
}

/* ============================================
   NAV — OVERFLOW FIX (mobile + small screens)
   ============================================ */
nav {
  flex-wrap: nowrap;
  overflow: visible;
}
.nav-links {
  gap: 1.4rem;
  flex-wrap: nowrap;
}
.nav-links a {
  font-size: 0.82rem;
  white-space: nowrap;
}
.logo {
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta {
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ============================================
   HAMBURGER MENU (mobile)
   ============================================ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 1.5rem 5%;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--lime); }

@media (max-width: 900px) {
  .hamburger { display: flex; }
  .nav-cta { display: none; }
}
