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

:root {
  --black:    #0a0a0a;
  --white:    #ffffff;
  --accent:   #d4ff00;
  --accent2:  #0041ff;
  --muted:    #6b6b6b;
  --border:   rgba(255,255,255,0.08);
  --card-bg:  #111111;
  --card-bg2: #0d0d0d;
  --radius:   16px;
  --font-display: 'Syne', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --nav-h: 72px;
  --max: 1200px;
  --ease: cubic-bezier(.16,1,.3,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── CUSTOM CURSOR ── */
.cursor {
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  mix-blend-mode: difference;
  transition: transform 0.15s var(--ease);
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  opacity: 0.4;
  transition: all 0.18s var(--ease);
}

/* ── NAVIGATION ── */
.site-nav {
  position: fixed; top: 0; width: 100%; z-index: 500;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 48px;
  background: rgba(10,10,10,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}
.site-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 22px;
  letter-spacing: -0.5px; color: var(--white);
}
.site-logo span { color: var(--accent); }

.nav-menu {
  display: flex; align-items: center; gap: 32px;
}
.nav-menu a {
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.65);
  position: relative;
  transition: color 0.2s;
}
.nav-menu a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--white); }
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-cta {
  background: var(--accent) !important;
  color: var(--black) !important;
  font-weight: 500 !important;
  padding: 10px 22px;
  border-radius: 99px;
  font-size: 13px !important;
  transition: transform 0.2s var(--ease), box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: scale(1.04) !important;
  box-shadow: 0 0 24px rgba(212,255,0,0.4) !important;
}
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  z-index: 499;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 24px; font-family: var(--font-display); font-weight: 700; }

/* ── PAGE HERO (shared inner pages) ── */
.page-hero {
  min-height: 52vh;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--nav-h) + 80px) 48px 72px;
  position: relative; overflow: hidden;
  background: var(--black);
}
.page-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}
@keyframes gridShift { 100% { transform: translateY(60px); } }

.page-hero-glow {
  position: absolute; width: 500px; height: 500px;
  background: rgba(212,255,0,0.07);
  border-radius: 50%; filter: blur(100px);
  top: -100px; right: -100px; z-index: 0;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%,100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max); margin: 0 auto; width: 100%;
}
.page-eyebrow {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,255,0,0.08);
  border: 1px solid rgba(212,255,0,0.18);
  padding: 5px 14px; border-radius: 99px;
  display: inline-block; margin-bottom: 24px;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}
.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 76px);
  letter-spacing: -2.5px; line-height: 1.0;
  animation: fadeUp 0.8s var(--ease) 0.2s both;
}
.page-title .outline { -webkit-text-stroke: 2px var(--white); color: transparent; }
.page-title .hi { color: var(--accent); }
.page-desc {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 560px; line-height: 1.75;
  margin-top: 20px;
  animation: fadeUp 0.8s var(--ease) 0.35s both;
}

/* ── TRUST MARQUEE ── */
.trust-bar {
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 64px; width: max-content;
  animation: marquee 22s linear infinite;
}
@keyframes marquee { 100% { transform: translateX(-50%); } }
.marquee-item {
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.08em; text-transform: uppercase;
  white-space: nowrap; display: flex; align-items: center; gap: 10px;
}
.marquee-item .dot {
  width: 4px; height: 4px;
  background: var(--accent); border-radius: 50%;
}

/* ── SECTION UTILITIES ── */
section { padding: 112px 48px; }
.container { max-width: var(--max); margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.8vw, 50px);
  letter-spacing: -1.5px; line-height: 1.1;
  margin-bottom: 18px;
}
.section-sub {
  font-size: 17px; font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 520px; line-height: 1.75;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--accent); color: var(--black);
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  padding: 15px 34px; border-radius: 99px;
  border: none; cursor: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-primary:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 16px 40px rgba(212,255,0,0.32);
}
.btn-ghost {
  color: var(--white); font-family: var(--font-body);
  font-size: 15px; font-weight: 400;
  display: inline-flex; align-items: center; gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.25s;
}
.btn-ghost:hover { border-color: var(--accent); gap: 14px; }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.3s, transform 0.3s var(--ease);
}
.card:hover { border-color: rgba(212,255,0,0.2); transform: translateY(-4px); }

/* ── FOOTER ── */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 72px 48px 36px;
}
.footer-grid {
  max-width: var(--max); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand .site-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.75; max-width: 260px; margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--white);
  transition: background 0.2s, border-color 0.2s;
}
.social-btn:hover { background: rgba(212,255,0,0.08); border-color: rgba(212,255,0,0.2); }
.footer-col h5 {
  font-family: var(--font-display);
  font-weight: 600; font-size: 13px;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 14px; font-weight: 300;
  color: rgba(255,255,255,0.38);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; border-top: 1px solid var(--border);
  font-size: 13px; color: rgba(255,255,255,0.28);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .site-nav { padding: 0 20px; }
  .nav-menu { display: none; }
  .nav-hamburger { display: flex; }
  section { padding: 72px 24px; }
  .page-hero { padding: calc(var(--nav-h) + 48px) 24px 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}
