@import url('https://fonts.googleapis.com/css2?family=Anta&family=Michroma&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* ===== Hero Blue Palette (Thynk Unlimited inspired) ===== */
  --hero-bg-dark: #0c1e3d;
  --hero-bg-mid: #152d5a;
  --hero-bg-light: #1e3f7a;
  --hero-accent: #2563eb;
  --hero-accent-glow: #3b82f6;

  /* ===== Global Brand Palette ===== */
  --bg-dark: #030712; /* ultra dark slate */
  --bg-darker: #000000;
  --bg-light: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.03);
  --border-light: rgba(255, 255, 255, 0.08);

  --text-dark: #111111;
  --text-light: #f8fafc;
  --text-muted: rgba(255, 255, 255, 0.6);

  /* Primary Accent: Electric Blue */
  --primary-base: #2563eb;
  --primary-glow: #3b82f6;
  --primary-light: #60a5fa;
  --primary-alpha: rgba(37, 99, 235, 0.15);

  /* Secondary Accent: Deep Violet */
  --secondary-base: #7c3aed;
  --secondary-glow: #8b5cf6;
  --secondary-light: #a78bfa;
  --secondary-alpha: rgba(124, 58, 237, 0.15);

  /* ===== Typography ===== */
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body-family: 'Anta', sans-serif;
  --font-special: 'Michroma', sans-serif;
  --font-primary: var(--font-body-family);
  --font-display: clamp(3.5rem, 7vw, 7rem);
  --font-h2: clamp(2.5rem, 5vw, 5rem);
  --font-body: clamp(1rem, 1.5vw, 1.25rem);

  /* ===== Spacing ===== */
  --space-lg: 6rem;
  --nav-height: 64px;
}

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

html, body {
  width: 100%;
  overflow-x: hidden;
}

html {
  scroll-behavior: auto; /* Lenis handles smooth scrolling */
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, .section-title, .hero-title, .nav-link, .btn-3d {
  font-family: var(--font-heading);
}

.section-tag, .nav-brand-text, .footer-brand, .marquee-badge {
  font-family: var(--font-special);
  letter-spacing: 0.05em;
}

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

img {
  max-width: 100%;
  height: auto;
}
