:root {
  --bg: #07070D;
  --bg-2: #0E0E18;
  --bg-card: #111120;
  --orange: #F97316;
  --orange-light: #FB923C;
  --orange-dim: rgba(249,115,22,0.10);
  --orange-border: rgba(249,115,22,0.25);
  --orange-glow: rgba(249,115,22,0.06);
  --text: #F1F5F9;
  --text-muted: #94A3B8;
  --border: rgba(255,255,255,0.06);
  --maxw: 1240px;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

.particles-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

.navbar, main, .footer { position: relative; z-index: 2; }
.cursor-dot, .cursor-ring { z-index: 9999; }

h1, h2, h3, h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--text);
}

p { color: var(--text-muted); }

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }

button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

img, svg { display: block; max-width: 100%; }

input, textarea {
  font-family: inherit;
  font-size: 1rem;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.85rem 1rem;
  border-radius: 8px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

input:focus, textarea:focus {
  border-color: var(--orange);
  background: rgba(249,115,22,0.03);
}

textarea { resize: vertical; font-family: inherit; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--orange);
  display: inline-block;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-bottom: 3rem;
  max-width: 820px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-top: -1.5rem;
  margin-bottom: 3rem;
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.8rem;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  border: 1px solid transparent;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--orange);
  color: #0a0a0a;
  font-weight: 500;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(249,115,22,0.4), 0 0 0 1px rgba(249,115,22,0.5);
  background: var(--orange-light);
}

.btn-outline {
  border-color: var(--orange-border);
  color: var(--text);
  background: transparent;
}

.btn-outline:hover {
  background: var(--orange);
  color: #0a0a0a;
  border-color: var(--orange);
  transform: translateY(-2px);
}

.grad-text {
  background: linear-gradient(135deg, #F97316 0%, #FB923C 50%, #FDBA74 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--orange-border);
  border-radius: 999px;
  background: var(--orange-glow);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.dot-pulse {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  position: relative;
  animation: pulse 2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 640px) {
  .section { padding: 4rem 0; }
  .section-heading { margin-bottom: 2rem; }
}
