:root {
  --color-deep-blue: #020b24;
  --color-royal-blue: #0a2f6b;
  --color-neon-blue: #0066ff;
  --color-electric-cyan: #0099ff;
  --color-light-blue: #b9ddff;
  --color-dark-surface: #040b18;
  --color-dark-surface-elevated: #081225;
  --color-glass-surface: #020b24b3;
  --color-text-primary: #fff;
  --color-text-secondary: #a8a8b3;
  --color-text-muted: #6e6e80;
  --gradient-primary: linear-gradient(
    135deg,
    var(--color-deep-blue) 0%,
    var(--color-royal-blue) 100%
  );
  --gradient-neon: linear-gradient(
    135deg,
    var(--color-royal-blue) 0%,
    var(--color-neon-blue) 100%
  );
  --gradient-glass: linear-gradient(180deg, rgba(0, 210, 255, 0.1), #020b244d);
  --shadow-sm: 0 2px 4px #0000004d;
  --shadow-md: 0 4px 12px #0006;
  --shadow-lg: 0 8px 24px #00000080;
  --shadow-xl: 0 16px 48px #0009;
  --shadow-glow: 0 0 20px rgba(0, 102, 255, 0.5);
  --shadow-glow-intense: 0 0 40px rgba(0, 102, 255, 0.8);
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;
  --font-display:
    "Satoshi-Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body:
    "Satoshi-Variable", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "Consolas", "Monaco", "Andale Mono", "Ubuntu Mono", monospace;
  --text-xs: clamp(0.75rem, 1.5vw, 0.875rem);
  --text-sm: clamp(0.875rem, 2vw, 1rem);
  --text-base: clamp(1rem, 2.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 3vw, 1.25rem);
  --text-xl: clamp(1.25rem, 3.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 4vw, 2rem);
  --text-3xl: clamp(2rem, 5vw, 3rem);
  --text-4xl: clamp(2.5rem, 6vw, 4rem);
  --text-5xl: clamp(3rem, 8vw, 5rem);
  --text-6xl: clamp(4rem, 10vw, 6rem);
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;
  --tracking-tight: -0.05em;
  --tracking-normal: 0;
  --tracking-wide: 0.05em;
  --tracking-wider: 0.1em;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  --duration-fast: 200ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;
  --duration-slower: 800ms;
  --duration-slowest: 1200ms;
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --z-base: 0;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-overlay: 300;
  --z-modal: 400;
  --z-popover: 500;
  --z-tooltip: 600;
  --z-notification: 700;
  --blur-sm: 4px;
  --blur-md: 8px;
  --blur-lg: 16px;
  --blur-xl: 24px;
  color-scheme: dark;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes pulse {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
@keyframes glow {
  0%,
  to {
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.5);
  }
  50% {
    box-shadow:
      0 0 40px rgba(0, 210, 255, 0.8),
      0 0 60px rgba(0, 210, 255, 0.4);
  }
}
@keyframes float {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes rotateAnimation {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
@keyframes gradientShift {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
@keyframes glitch {
  0%,
  to {
    text-shadow:
      0.05em 0 0 #ff0000bf,
      -0.05em -0.025em 0 #00ff00bf,
      0.025em 0.05em 0 #0000ffbf;
  }
  14% {
    text-shadow:
      0.05em 0 0 #ff0000bf,
      -0.05em -0.025em 0 #00ff00bf,
      0.025em 0.05em 0 #0000ffbf;
  }
  15% {
    text-shadow:
      -0.05em -0.025em 0 #ff0000bf,
      0.025em 0.025em 0 #00ff00bf,
      -0.05em -0.05em 0 #0000ffbf;
  }
  49% {
    text-shadow:
      -0.05em -0.025em 0 #ff0000bf,
      0.025em 0.025em 0 #00ff00bf,
      -0.05em -0.05em 0 #0000ffbf;
  }
  50% {
    text-shadow:
      0.025em 0.05em 0 #ff0000bf,
      0.05em 0 0 #00ff00bf,
      0 -0.05em 0 #0000ffbf;
  }
  99% {
    text-shadow:
      0.025em 0.05em 0 #ff0000bf,
      0.05em 0 0 #00ff00bf,
      0 -0.05em 0 #0000ffbf;
  }
}
@keyframes typewriter {
  0% {
    width: 0;
  }
  to {
    width: 100%;
  }
}
@keyframes blink {
  0%,
  to {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  to {
    background-position: 1000px 0;
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes particle {
  0% {
    opacity: 1;
    transform: translate(0) scale(0);
  }
  50% {
    opacity: 0.8;
    transform: translate(var(--x), var(--y)) scale(1);
  }
  to {
    opacity: 0;
    transform: translate(calc(var(--x) * 2), calc(var(--y) * 2)) scale(0);
  }
}
@keyframes wave {
  0%,
  to {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-10px);
  }
  75% {
    transform: translateY(5px);
  }
}
.animate-fadeIn {
  animation: fadeIn var(--duration-slow) var(--ease-out-expo) both;
}
.animate-fadeInUp {
  animation: fadeInUp var(--duration-slow) var(--ease-out-expo) both;
}
.animate-fadeInDown {
  animation: fadeInDown var(--duration-slow) var(--ease-out-expo) both;
}
.animate-scaleIn {
  animation: scaleIn var(--duration-slow) var(--ease-out-expo) both;
}
.animate-pulse {
  animation: pulse 2s ease-in-out infinite;
}
.animate-glow {
  animation: glow 2s ease-in-out infinite;
}
.animate-float {
  animation: float 6s ease-in-out infinite;
}
.animate-rotate {
  animation: rotateAnimation 20s linear infinite;
}
.animate-gradient {
  animation: gradientShift 15s ease infinite;
  background-size: 200% 200%;
}
.animate-glitch {
  animation: glitch 0.3s ease-in-out infinite;
}
.animate-shimmer {
  animation: shimmer 2s linear infinite;
  background: linear-gradient(90deg, #0000, #ffffff1a 50%, #0000);
  background-size: 1000px 100%;
}
.stagger-children > * {
  animation: fadeInUp var(--duration-slow) var(--ease-out-expo) both;
}
.stagger-children > :first-child {
  animation-delay: 0.1s;
}
.stagger-children > :nth-child(2) {
  animation-delay: 0.2s;
}
.stagger-children > :nth-child(3) {
  animation-delay: 0.3s;
}
.stagger-children > :nth-child(4) {
  animation-delay: 0.4s;
}
.stagger-children > :nth-child(5) {
  animation-delay: 0.5s;
}
.stagger-children > :nth-child(6) {
  animation-delay: 0.6s;
}
.stagger-children > :nth-child(7) {
  animation-delay: 0.7s;
}
.stagger-children > :nth-child(8) {
  animation-delay: 0.8s;
}
.hover-lift {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}
.hover-lift:hover {
  transform: translateY(-5px);
}
.hover-scale {
  transition: transform var(--duration-normal) var(--ease-out-expo);
}
.hover-scale:hover {
  transform: scale(1.05);
}
.magnetic {
  transition: transform var(--duration-fast) var(--ease-out-expo);
}
[role="button"],
a,
body,
button,
input,
select,
textarea {
  cursor: none !important;
}
.gsap-marker-end,
.gsap-marker-scroller-end,
.gsap-marker-scroller-start,
.gsap-marker-start {
  display: none !important;
}
@font-face {
  font-display: swap;
  font-family: Satoshi-Variable;
  font-style: normal;
  font-weight: 300 900;
  src:
    url(../fonts/Satoshi-Variable.353a66cdd8922bb63107.woff2) format("woff2"),
    url(../fonts/Satoshi-Variable.4db206aaad2132de9db7.woff) format("woff");
}
*,
:after,
:before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  background-color: var(--color-deep-blue);
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: var(--leading-normal);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color-scheme: dark;
  position: relative;
  touch-action: manipulation;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body:before {
  background-image:
    repeating-linear-gradient(
      45deg,
      #0000,
      #0000 35px,
      #ffffff03 0,
      #ffffff03 70px
    ),
    url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='a'%3E%3CfeTurbulence baseFrequency='.9' numOctaves='4' type='fractalNoise'/%3E%3C/filter%3E%3Cpath d='M0 0h100v100H0z' filter='url(%23a)' opacity='.02'/%3E%3C/svg%3E");
  content: "";
  height: 100%;
  left: 0;
  opacity: 0.3;
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1;
}
#root {
  min-height: 100vh;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  position: relative;
  z-index: 2;
}
[data-speed],
section {
  contain: layout;
}
section {
  padding-bottom: 0.1px;
  padding-top: 0.1px;
  position: relative;
}
.clients-section,
.services-section,
.skills-section {
  contain: layout;
}
@media screen {
  .section,
  section {
    transform: translateZ(0);
  }
  .pin-spacer {
    pointer-events: none !important;
  }
  [data-gsap-initialized="false"] {
    opacity: 0;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-text-primary);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
}
h1 {
  font-size: var(--text-6xl);
  font-weight: 900;
}
@media (max-width: 1440px) {
  h1 {
    font-size: var(--text-5xl);
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: var(--text-4xl);
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }
}
h2 {
  font-size: var(--text-5xl);
  font-weight: 800;
}
@media (max-width: 768px) {
  h2 {
    font-size: clamp(1.75rem, 8vw, 2.5rem);
  }
}
h3 {
  font-size: var(--text-4xl);
  font-weight: 700;
}
@media (max-width: 768px) {
  h3 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}
h4 {
  font-size: var(--text-3xl);
}
@media (max-width: 768px) {
  h4 {
    font-size: clamp(1.25rem, 6vw, 1.75rem);
  }
}
h5 {
  font-size: var(--text-2xl);
}
@media (max-width: 768px) {
  h5 {
    font-size: clamp(1.125rem, 5vw, 1.5rem);
  }
}
h6 {
  font-size: var(--text-xl);
}
@media (max-width: 768px) {
  h6 {
    font-size: clamp(1rem, 4vw, 1.25rem);
  }
}
p {
  color: var(--color-text-secondary);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
}
a {
  color: var(--color-neon-blue);
  cursor: pointer;
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out-expo);
  -webkit-tap-highlight-color: transparent;
}
a:hover {
  color: var(--color-electric-cyan);
}
@media (hover: hover) and (pointer: fine) {
  a {
    cursor: none;
  }
}
::selection {
  background-color: var(--color-neon-blue);
  color: var(--color-text-primary);
}
::-webkit-scrollbar {
  height: 8px;
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-dark-surface);
}
::-webkit-scrollbar-thumb {
  background: var(--color-royal-blue);
  border-radius: var(--radius-full);
  transition: background var(--duration-fast);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--color-neon-blue);
}
.container {
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 var(--space-xl);
  width: 100%;
}
@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}
.section {
  padding: var(--space-5xl) 0;
  position: relative;
}
@media (max-width: 1024px) {
  .section {
    padding: var(--space-4xl) 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: var(--space-3xl) 0;
  }
}
.glass {
  backdrop-filter: blur(var(--blur-lg));
  -webkit-backdrop-filter: blur(var(--blur-lg));
  background: var(--color-glass-surface);
  border: 1px solid #ffffff1a;
}
.glow {
  box-shadow: var(--shadow-glow);
  transition: box-shadow var(--duration-normal) var(--ease-out-expo);
}
.glow:hover {
  box-shadow: var(--shadow-glow-intense);
}
.visually-hidden {
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  border-width: 0;
  white-space: nowrap;
}
:focus-visible {
  outline: 2px solid var(--color-neon-blue);
  outline-offset: 2px;
}
@media (hover: none) and (pointer: coarse) {
  :focus {
    outline: none;
  }
}
button,
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
}
body,
html {
  max-width: 100%;
  overflow-x: hidden;
}
[role="button"],
a,
button {
  min-height: 44px;
  min-width: 44px;
}
@media (prefers-reduced-motion: reduce) {
  *,
  :after,
  :before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
@media (max-width: 768px) {
  body {
    position: relative;
  }
  body,
  section {
    overflow-x: hidden;
  }
  section {
    max-width: 100vw;
  }
  * {
    -webkit-overflow-scrolling: touch;
  }
  @media (hover: none) and (pointer: coarse) {
    .glow:hover {
      box-shadow: var(--shadow-glow);
    }
    a:hover {
      color: var(--color-neon-blue);
    }
  }
}
