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

:root {
  --bg: #030303;
  --surface: rgba(255, 255, 255, 0.03);
  --accent: #ff6b00;
  --accent-glow: rgba(255, 107, 0, 0.3);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.5);
  --border: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(10, 10, 10, 0.7);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Brand Gradients */
  --brand-gradient: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  --hero-gradient: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.5) 100%);

  /* Responsive Spacing & Layout */
  --container-padding: 2rem;
  --section-padding: 8rem;
}

@media (max-width: 768px) {
  :root {
    --container-padding: 1.5rem;
    --section-padding: 5rem;
  }
}

@media (max-width: 480px) {
  :root {
    --container-padding: 1rem;
    --section-padding: 4rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Utilities */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.text-gradient {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-lg { font-size: clamp(1rem, 2.5vw, 1.125rem); }
.text-xl { font-size: clamp(1.125rem, 3vw, 1.25rem); }
.text-3xl { font-size: clamp(1.5rem, 5vw, 2rem); }
.text-5xl { font-size: clamp(2rem, 8vw, 3rem); }
.text-7xl { font-size: clamp(2.5rem, 10vw, 5rem); }
.text-8xl { font-size: clamp(2.75rem, 12vw, 6.5rem); }

.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }
.tracking-tighter { letter-spacing: -0.05em; }
.leading-tight { line-height: 1.1; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 1.5rem; }
.mb-10 { margin-bottom: 2rem; }

section {
  padding: var(--section-padding) 0;
  position: relative;
}

.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
}

.dot-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: -1;
}

.bloom {
  position: absolute;
  width: min(500px, 100vw);
  height: min(500px, 100vw);
  background: var(--accent);
  filter: blur(150px);
  opacity: 0.05;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
