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

:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #161616;
  --bg-card-hover: #1c1c1c;
  --accent: #6366f1;
  --accent-secondary: #a855f7;
  --accent-gradient: linear-gradient(135deg, #6366f1, #a855f7);
  --text-primary: #ffffff;
  --text-secondary: #888888;
  --text-muted: #444444;
  --border: rgba(255,255,255,0.06);
  --border-hover: rgba(255,255,255,0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* Custom Cursor Rules */
body { cursor: none; }

.cursor-dot { position: fixed; width: 8px; height: 8px; background: white; border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: transform 0.2s ease; }
.cursor-ring { position: fixed; width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%, -50%); transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease; }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 700;
}

.hero-headline {
  font-size: 72px;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1.05;
  margin-bottom: 24px;
}

.section-heading {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 16px;
}

.section-label {
  display: inline-block;
  background: rgba(99,102,241,0.1);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 30px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.gradient-bg {
  background: var(--accent-gradient);
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

ul {
  list-style: none;
}

/* Components */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.btn-primary {
  background: var(--accent-gradient);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:hover {
  box-shadow: 0 0 25px rgba(99,102,241,0.4);
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-secondary:hover {
  border-color: rgba(255,255,255,0.3);
}

/* Base Layout */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

section {
  padding: 120px 0;
  position: relative;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
}

/* Forms */
.form-input {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-primary);
  padding: 16px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(99,102,241,0.2);
}

label {
  display: block;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 500;
}

/* Nav */
header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  height: 120px;
  display: flex;
  align-items: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  height: 100px;
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a.nav-link {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 14px;
}

.nav-links a.nav-link:hover {
  color: var(--text-primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
}

/* Hero Elements */
.hero-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(rgba(99,102,241,0.12), transparent);
  top: -200px;
  left: -200px;
  animation: float 8s ease-in-out infinite alternate;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(rgba(168,85,247,0.08), transparent);
  bottom: -100px;
  right: -100px;
  animation: float 8s ease-in-out infinite alternate;
  animation-delay: -4s;
}

@keyframes float {
  0% { transform: translateY(0); }
  100% { transform: translateY(-30px); }
}

.grid-overlay {
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 0;
}

/* Marquee */
.marquee-wrapper {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--bg-primary);
  display: flex;
}

.marquee-inner {
  display: flex;
  align-items: center;
  animation: marquee 30s linear infinite;
  gap: 32px;
}

.marquee-inner span {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
}

.marquee-inner span::after {
  content: '·';
  color: var(--accent);
  margin-left: 32px;
  font-size: 20px;
  font-weight: bold;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 80px 0 32px;
  background: var(--bg-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a, .footer-col p {
  color: var(--text-muted);
  font-size: 14px;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* Stats Progress */
.progress-bar-container {
  height: 6px;
  border-radius: 3px;
  background: var(--bg-secondary);
  overflow: hidden;
  margin-top: 8px;
  margin-bottom: 24px;
}

.progress-fill {
  height: 100%;
  background: var(--accent-gradient);
  width: 0;
  transition: width 1s ease;
}

/* Content Utils */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.st-icon {
  width: 50px;
  height: 50px;
  background: rgba(99,102,241,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--accent-secondary);
}

.bullet-item {
  border-left: 2px solid;
  border-image: var(--accent-gradient) 1;
  padding-left: 16px;
  margin-bottom: 24px;
}

.bullet-item h4 {
  color: var(--text-primary);
  font-size: 18px;
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-headline { font-size: 42px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .nav-links {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 24px;
    clip-path: inset(0 0 100% 0);
    transition: clip-path 0.3s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active {
    clip-path: inset(0 0 0 0);
  }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  
  .flex-center {
    flex-direction: column;
  }
}

.text-center { text-align: center; }
.relative { position: relative; }
.align-items-center { align-items: center; }
.stat-box { display: flex; flex-direction: column; align-items: center; gap: 6px; }
.stat-num { font-size: 32px; font-weight: 800; background: var(--accent-gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: -1px; }
.stat-label { font-size: 13px; color: var(--text-secondary); font-weight: 400; }
.progress-bar-container { height: 6px; border-radius: 3px; background: var(--bg-secondary); overflow: hidden; }
.footer-container { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-container h4 { font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-primary); margin-bottom: 20px; }
.footer-container ul li { margin-bottom: 10px; }
.footer-container a, .footer-container p { color: var(--text-muted); font-size: 14px; margin-bottom: 0; }
.footer-container a:hover { color: var(--text-primary); }
@media (max-width: 768px) { .footer-container { grid-template-columns: 1fr; gap: 32px; } .stat-box { padding: 0 16px; } .stat-num { font-size: 24px; } }
