
/* Base Styles */
scroll-tracker {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  mix-blend-mode: difference;
}

@media (max-width: 768px) {
  scroll-tracker {
    display: none;
  }
}

:root {
    --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 200;
    color: white;
    background-color: #000;
    line-height: 1.6;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Neue Machina', sans-serif;
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2.5rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 300;
}
p {
    font-weight: 200;
    max-width: 60ch;
    margin-bottom: 1.5rem;
    letter-spacing: 0.03em;
}
/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.float {
    animation: float 6s ease-in-out infinite;
}
/* Hover Effects */
.hovered-element:hover {
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.2);
}
/* Integrations Styles */
#integrations .flex > div {
    opacity: 0;
    transform: translateY(20px) rotateX(15deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    perspective: 1000px;
    filter: grayscale(0.8);
}

#integrations .flex > div.animate {
    opacity: 1;
    transform: translateY(0) rotateX(0);
    filter: grayscale(0);
}

#integrations .flex > div:nth-child(1) { transition-delay: 0.1s; }
#integrations .flex > div:nth-child(2) { transition-delay: 0.2s; }
#integrations .flex > div:nth-child(3) { transition-delay: 0.3s; }
#integrations .flex > div:nth-child(4) { transition-delay: 0.4s; }
#integrations .flex > div:nth-child(5) { transition-delay: 0.5s; }

#integrations .group {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}

#integrations .group:hover {
    transform: translateY(-8px);
}

#integrations .group:hover > div {
    background: rgba(59, 130, 246, 0.15) !important;
    box-shadow: 0 15px 30px rgba(59, 130, 246, 0.2);
}

#integrations img {
    transition: all 0.4s ease;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.3));
}

#integrations .group:hover img {
    transform: scale(1.2);
    filter: drop-shadow(0 8px 20px rgba(59, 130, 246, 0.6));
}

#integrations span {
    transition: all 0.4s ease;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0);
}

#integrations .group:hover span {
    color: white;
    text-shadow: 0 0 8px rgba(59, 130, 246, 0.4);
}

#integrations .group > div {
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

#integrations .group:hover > div {
    border-color: rgba(59, 130, 246, 0.3);
    backdrop-filter: blur(8px);
}
/* Pulse Animation for Integration Section */
#integrations.pulse-section {
    position: relative;
}

#integrations.pulse-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pulse-color);
    z-index: -1;
    opacity: 0;
    animation: pulse-fade 2s ease-out;
}

@keyframes pulse-fade {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0;
        transform: scale(1.05);
    }
}

/* Carousel Styles */
.carousel-container {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-item {
    flex: 0 0 auto;
}

@media (max-width: 640px) {
    .carousel-item {
        width: 100%;
    }
}

.carousel-prev,
.carousel-next {
    display: none;
}

@media (min-width: 640px) {
    .carousel-prev,
    .carousel-next {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        width: 40px;
        height: 40px;
    }
}

.carousel-prev:hover,
.carousel-next:hover {
    background-color: rgba(37, 99, 235, 0.8);
    transform: translateY(-50%) scale(1.1);
}
/* Animated text gradient */
@keyframes text-shine {
    0% { background-position: 0% 50% }
    100% { background-position: 100% 50% }
}

.animate-text-gradient {
    background-size: 200% auto;
    animation: text-shine 3s linear infinite;
    font-weight: 700;
}
/* Components */
.btn-glow {
position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(246,174,45,0.8) 0%, rgba(246,174,45,0) 70%);
    transform: scale(0);
    transition: transform 0.5s ease-out;
}

.btn-glow:hover::before {
    transform: scale(1);
}

/* Scroll Reveal Animation */
[data-aos="custom-fade"] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos="custom-fade"].aos-animate {
    opacity: 1;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
}
/* Navigation */
nav {
  padding: 1rem 0;
}

/* Language Selector */
.language-selector .dropdown {
  transform: translateY(10px);
  transition: all 0.2s ease;
}

.language-selector:hover .dropdown {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.language-selector .dropdown a {
  position: relative;
}

.language-selector .dropdown a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(to right, #3b82f6, #6366f1);
  transition: width 0.3s ease;
}

.language-selector .dropdown a:hover::after {
  width: 100%;
}
nav a {
    font-weight: 200;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  nav {
    padding: 0.75rem 0;
  }

  nav .hidden.md\\:flex {
    display: none;
  }
}
/* Cursor */
.cursor {
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    from, to { opacity: 1; }
    50% { opacity: 0; }
}
/* Section Styling */
section {
    position: relative;
    padding: 6rem 0;
}
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(246,174,45,0.2) 50%, 
        transparent 100%);
}
/* Scroll Detection Animation */
#integrations-section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

#integrations-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Text Highlight Effect */
.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
}
/* Pulse Animation for Coming Soon */
@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(59, 130, 246, 0.2);
    }
    50% {
        box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
    }
}

.coming-soon {
    animation: pulse-glow 2s infinite;
}

/* Gradient Underline */
.gradient-underline {
    position: relative;
    display: inline-block;
}

.gradient-underline::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6 0%, #6366f1 100%);
transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.gradient-underline:hover::after {
    transform: scaleX(1);
}
.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: -0.1em;
    right: -0.1em;
    height: 0.3em;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.3) 0%, rgba(79, 70, 229, 0.3) 100%);
z-index: -1;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s var(--ease-out-quint);
}
.highlight-text:hover::after {
    transform: scaleX(1);
}

/* Subtle Floating Animation */
@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.floating {
    animation: subtle-float 8s ease-in-out infinite;
}
/* Typing Effect Container */
.typing-text {
    min-height: 4rem;
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 1.5rem;
        line-height: 1.2;
        min-height: 3.5rem;
        padding: 0 1rem;
    }
}
