@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Manrope:wght@200..800&family=Caveat:wght@400..700&display=swap');

:root {
  --color-bg: #0D1B2A;
  --color-surface: #1B263B;
  --color-primary: #00D9C0;
  --color-secondary: #FFB800;
  --color-accent: #FF6B35;
  --color-green: #2DD881;
  --color-text: #FFFFFF;
  --color-text-dim: #9DB4C8;
  
  --font-display: 'Fraunces', serif;
  --font-body: 'Manrope', sans-serif;
  --font-handwriting: 'Caveat', cursive;
  
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  
  --transition-quick: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

body {
  font-family: var(--font-body);
  background: #0D1B2A;
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 217, 192, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 184, 0, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(45, 216, 129, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-variation-settings: 'wght' 800, 'opsz' 144;
}

h2 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-variation-settings: 'wght' 700, 'opsz' 120;
}

h3 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

p {
  font-size: clamp(1rem, 2vw, 1.125rem);
  max-width: 65ch;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-quick);
}

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

button {
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  border: none;
  background: none;
  transition: all var(--transition-smooth);
}

input, textarea {
  font-family: var(--font-body);
  font-size: 1rem;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hidden {
  display: none !important;
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

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

.paint-splatter {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.3;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(20px, -20px) scale(1.1);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}