:root {
  --bg-dark: #05060a;
  --bg-panel: rgba(255, 255, 255, 0.065);
  --text-main: #f1f3f7;
  --text-muted: #a4abba;

  --accent: #6d8cff;
  --accent-2: #00d8c8;
  --accent-3: #f5c76a;

  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-dark);
  color: var(--text-main);
  overflow: hidden;
  font-family: 'Satoshi', 'Inter Tight', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-rendering: geometricPrecision;
}

html:not(.gsap-active).nexylo-ready [data-reveal],
html:not(.gsap-active).nexylo-ready .card-links,
html:not(.gsap-active).nexylo-ready .topnav-glass,
html:not(.gsap-active).nexylo-ready .footer-glass {
  animation: nexylo-fade-up 0.78s ease both;
}

html:not(.gsap-active).nexylo-ready .topnav-glass {
  animation-delay: 0.05s;
}

html:not(.gsap-active).nexylo-ready [data-reveal]:nth-of-type(1) {
  animation-delay: 0.12s;
}

html:not(.gsap-active).nexylo-ready [data-reveal]:nth-of-type(2) {
  animation-delay: 0.2s;
}

html:not(.gsap-active).nexylo-ready [data-reveal]:nth-of-type(3) {
  animation-delay: 0.28s;
}

html:not(.gsap-active).nexylo-ready .card-links {
  animation-delay: 0.32s;
}

html:not(.gsap-active).nexylo-ready .footer-glass {
  animation-delay: 0.42s;
}

@keyframes nexylo-fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html:not(.gsap-active).nexylo-ready [data-reveal],
  html:not(.gsap-active).nexylo-ready .card-links,
  html:not(.gsap-active).nexylo-ready .topnav-glass,
  html:not(.gsap-active).nexylo-ready .footer-glass {
    animation: none;
  }
}

a {
  -webkit-tap-highlight-color: transparent;
}

::selection {
  color: #05060a;
  background: var(--accent-3);
}
