:root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #171717;
    --accent-orange: #f97316;
    --accent-turquoise: #2dd4bf;
    --text-main: #ffffff;
    --text-muted: #a3a3a3;
}

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

body {
    background-color: var(--primary-bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: transform 0.2s ease, opacity 0.2s ease, background-color 0.3s ease;
}

button:active {
    transform: scale(0.98);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

ul,
ol {
    list-style: none;
}

@media (max-width: 768px) {
    h1 {
        font-size: clamp(1.75rem, 8vw, 2.5rem);
    }

    h2 {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }

    h3 {
        font-size: clamp(1.25rem, 5vw, 1.75rem);
    }

    .break-long-text {
        word-break: break-all;
        font-size: 0.875rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }
}

:focus-visible {
    outline: 2px solid var(--accent-turquoise);
    outline-offset: 4px;
}

/* ===== header ===== */
.js-mobile-menu {
    transition: max-height 0.3s ease-in-out;
}

/* ===== hero_section ===== */
#hero {
    scroll-margin-top: 80px;
}

@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.animate-fade-in {
    animation: fade-in 0.8s ease-out forwards;
}

/* ===== value_prop ===== */
#value-prop {
    scroll-margin-top: 80px;
    width: 100%;
}

/* ===== key_features ===== */
.js-feature-card {
    will-change: transform, opacity;
}

/* ===== product_video ===== */
#video {
    width: 100%;
}

#video .neon-frame {
    box-shadow: 0 0 25px var(--accent-turquoise), inset 0 0 10px var(--accent-turquoise);
}

#video .js-play-btn:hover {
    box-shadow: 0 0 30px var(--accent-turquoise);
}

/* ===== cta_form ===== */
.js-modal {
    transition: opacity 0.3s ease-in-out;
}

/* ===== benefits ===== */
#benefits {
    width: 100%;
}

.js-benefit-card {
    transform: translateY(2rem);
    transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.js-benefit-card.opacity-100 {
    transform: translateY(0);
}

/* ===== trusted_by ===== */
.partners-section {
    width: 100%
}

/* ===== footer ===== */
#footer {
    position: relative;
    width: 100%;
}

#footer a {
    display: inline-block;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.new-logo {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

@media (max-width:767px) {
    .new-logo div {
        font-size: 12px;
    }
}