:root {
  --primary: #22c55e;
  --primary-glow: rgba(34, 197, 94, 0.4);
  --bg: #0a0e17;
  --card: rgba(21, 28, 44, 0.6);
  --text: #f8fafc;
  --muted: #94a3b8;
  --border: rgba(255, 255, 255, 0.1);
  --grad: linear-gradient(135deg, #22c55e 0%, #06b6d4 100%);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 40%);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

nav {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: -0.5px;
}

.logo i {
  color: var(--primary);
  filter: drop-shadow(0 0 8px var(--primary-glow));
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
  color: #fff;
}

.btn {
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--grad);
  color: #000;
  box-shadow: 0 4px 15px var(--primary-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--primary-glow);
}

.btn-outline {
  border: 1px solid var(--border);
  color: #fff;
  background: rgba(255, 255, 255, 0.03);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero {
  padding: 120px 0 80px;
  text-align: center;
  position: relative;
}

.hero h1 {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.1;
  background: linear-gradient(to bottom, #fff 40%, rgba(255,255,255,0.5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeInDown 0.8s ease-out;
}

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

.hero p {
  font-size: 20px;
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

.hero-visual {
  width: 100%;
  height: 450px;
  margin-top: 60px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  border: 1px solid var(--border);
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
  animation: pulse 4s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 50px rgba(0,0,0,0.5); }
  50% { box-shadow: 0 0 70px rgba(34, 197, 94, 0.2); }
}

.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg), transparent);
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: blur(8px);
  transition: 0.4s;
}

.card:hover {
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-8px);
  background: rgba(21, 28, 44, 0.8);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(34, 197, 94, 0.1);
}

.ticker {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-wrap {
  display: inline-block;
  animation: scroll 30s linear infinite;
}

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

footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
  margin-top: 120px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.stat-card {
  text-align: center;
  padding: 20px;
  border-right: 1px solid var(--border);
}

.stat-card:last-child { border-right: none; }

.stat-value {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  display: block;
}

.stat-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

input, textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-family: inherit;
  transition: 0.3s;
}

input:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(255,255,255,0.06);
}
