@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=JetBrains+Mono:wght@400;500&display=swap');

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

:root {
  --black: #080808;
  --white: #ffffff;
  --off: #f7f7f5;
  --border: rgba(0,0,0,0.08);
  --font-head: 'DM Sans', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

html { scroll-behavior: smooth; }

h1, h2, h3, h4 { font-weight: 500; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-head);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: #000;
  display: flex; align-items: center;
  padding: 0 64px; height: 120px;
  font-family: var(--font-head);
}

.nav-logo img { height: 110px; width: auto; display: block; }

.nav-links {
  display: flex; list-style: none; gap: 40px; align-items: center;
  margin-left: auto;
}
.nav-links a {
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.5);
  text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }

.nav-cta {
  font-size: 15px; font-weight: 600;
  color: rgba(255,255,255,0.35);
  text-decoration: none; letter-spacing: 0.04em; text-transform: uppercase;
  transition: color 0.2s; white-space: nowrap;
  font-family: var(--font-head); margin-left: 36px;
}
.nav-cta:hover { color: #fff; }


/* FOOTER */
footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 36px 48px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-logo img { height: 28px; display: block; }
.footer-links { display: flex; gap: 28px; list-style: none; }
.footer-links a { color: rgba(0,0,0,0.35); text-decoration: none; font-size: 12px; letter-spacing: 0.03em; transition: color 0.2s; }
.footer-links a:hover { color: var(--black); }
.footer-copy { color: rgba(0,0,0,0.25); font-size: 12px; font-family: var(--font-mono); }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* BUTTONS */
.btn-black {
  background: var(--black); color: var(--white);
  border: none; border-radius: 6px; padding: 14px 28px;
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: opacity 0.2s;
}
.btn-black:hover { opacity: 0.72; }

.btn-outline {
  background: transparent; color: var(--black);
  border: 1px solid rgba(0,0,0,0.18); border-radius: 6px; padding: 14px 28px;
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--black); }

.btn-white {
  background: var(--white); color: var(--black);
  border: none; border-radius: 6px; padding: 14px 28px;
  font-family: var(--font-head); font-size: 14px; font-weight: 500;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: opacity 0.2s;
}
.btn-white:hover { opacity: 0.85; }

/* LABEL */
.section-label {
  font-family: var(--font-mono); font-size: 10px; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase; color: rgba(0,0,0,0.4);
  margin-bottom: 20px; padding-left: 10px; border-left: 2px solid var(--black);
  display: inline-block;
}

/* DOT GRID */
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}

/* PULSE */
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(22,163,74,0.35); } 50% { box-shadow: 0 0 0 7px rgba(22,163,74,0); } }

/* ORBS */
.hero-orb { position: absolute; border-radius: 50%; pointer-events: none; }
.hero-orb-1 { width: 700px; height: 700px; background: radial-gradient(circle, rgba(100,60,220,0.07) 0%, transparent 70%); top: -200px; left: -150px; animation: orbFloat1 12s ease-in-out infinite; }
.hero-orb-2 { width: 600px; height: 600px; background: radial-gradient(circle, rgba(0,140,255,0.06) 0%, transparent 70%); bottom: -100px; right: -100px; animation: orbFloat2 15s ease-in-out infinite; }
@keyframes orbFloat1 { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(40px,-30px) scale(1.05); } 66% { transform: translate(-20px,20px) scale(0.98); } }
@keyframes orbFloat2 { 0%,100% { transform: translate(0,0) scale(1); } 40% { transform: translate(-35px,25px) scale(1.04); } 70% { transform: translate(20px,-15px) scale(0.97); } }

/* STATS */
.stat-num { font-family: var(--font-mono); font-size: 28px; font-weight: 700; color: #fff; margin-bottom: 6px; letter-spacing: -0.02em; }
.stat-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.1em; color: rgba(255,255,255,0.35); text-transform: uppercase; }

/* HAMBURGER BUTTON */
.nav-hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 6px; flex-direction: column; gap: 5px; flex-shrink: 0;
}
.nav-hamburger span {
  display: block; width: 20px; height: 1.5px;
  background: rgba(255,255,255,0.65); transition: all 0.22s;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* MOBILE */
@media (max-width: 768px) {
  nav { padding: 0 20px; height: 72px; }
  .nav-logo img { height: 52px; }
  .nav-cta { display: none; }
  .nav-links {
    display: none;
    position: fixed; top: 72px; left: 0; right: 0; z-index: 199;
    background: #000; flex-direction: column; gap: 0;
    padding: 8px 0 32px; border-top: 1px solid rgba(255,255,255,0.08);
    margin-left: 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a {
    display: block; padding: 20px 28px;
    font-size: 18px; font-weight: 600; letter-spacing: 0.02em;
    color: rgba(255,255,255,0.85); text-transform: uppercase;
  }
  .nav-links a:hover { color: #fff; }
  .nav-hamburger { display: flex; }
  footer { padding: 28px 20px; flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-logo img { height: 26px; }
}
