:root {
  --bg: #0d0f13;
  --fg: #e8e4df;
  --accent: #f97316;
  --accent-dim: rgba(249, 115, 22, 0.08);
  --border: rgba(255, 255, 255, 0.06);
  --muted: #6b7280;
  --surface: #121419;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

/* Subtle noise texture */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Typography */
h1, h2, h3 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
}

/* Focus states */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Buttons */
button, .btn {
  cursor: pointer;
  transition: all 0.2s ease;
}

button:hover, .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.2);
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 600px) {
  nav { padding: 16px 20px !important; }
  nav a[href='#pricing'], nav a[href='#process'] { display: none; }
  footer { padding: 32px 20px !important; }
  footer > div { flex-direction: column !important; text-align: center; }
}