/* ===========================
   NAVBAR
=========================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-x);
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--t-smooth);
}
nav.scrolled {
  border-bottom-color: var(--border-md);
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.nav-logo span { color: var(--accent); }
.nav-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 400;
  color: var(--muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--t-fast);
}
.nav-link:hover { color: var(--white); }

.nav-cta {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--black);
  background: var(--accent);
  padding: 9px 22px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: var(--t-fast);
}
.nav-cta:hover { background: var(--accent-dark); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  transition: var(--t-fast);
}

/* ===========================
   HERO — Editorial left-aligned
=========================== */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 60px) var(--pad-x) 60px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,241,53,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,241,53,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-glow-bg {
  position: absolute;
  top: -10%; right: -5%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,241,53,0.06) 0%, transparent 65%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
  animation: fadeUp 0.7s ease both;
}
.hero-tag::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--accent);
}

.hero-title {
  font-size: clamp(3.5rem, 11vw, 9rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .outline {
  -webkit-text-stroke: 1.5px rgba(255,255,255,0.25);
  color: transparent;
}
.hero-title .accent { color: var(--accent); }

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s 0.2s ease both;
}
.hero-desc {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  max-width: 380px;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===========================
   SECTIONS
=========================== */
section {
  padding: var(--section-v) var(--pad-x);
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--off-black);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px var(--pad-x);
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }

  #hero {
    padding-bottom: 48px;
    justify-content: center;
  }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  section { padding: 70px var(--pad-x); }
}