:root {
    --primary: #00d2ff;
    --primary-rgb: 0, 210, 255;
    --primary-hover: #00b4db;
    --primary-glow: rgba(0, 210, 255, 0.4);

    --bg-body: #050505;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(10, 10, 12, 0.7);

    --text-main: #ffffff;
    --text-muted: #94a3b8;

    --border: rgba(255, 255, 255, 0.06);
    --border-hover: rgba(0, 210, 255, 0.4);

    --glass: blur(12px);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

a,
button,
.card,
.nav-btn {
    cursor: pointer;
}

body {
    font-family: 'Lexend', sans-serif;
    background-color: #050505;
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    font-weight: 500;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    z-index: 1000;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    width: 95%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    transition: all 0.5s ease;
}

nav.scrolled {
    padding: 12px 0;
}

nav.scrolled .nav-container {
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 12px 30px;
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.5),
        0 0 25px rgba(0, 210, 255, 0.2);
}

nav.scrolled .logo img {
    height: 30px;
}

nav.scrolled .nav-btn {
    padding: 8px 20px;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    z-index: 1001;
    transition: var(--transition-base);
}


@media (max-width: 768px) {
    .nav-links {
        display: none !important;
    }

    .nav-btn-desktop {
        display: none !important;
    }
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo img {
    height: 35px;
    border-radius: 8px;
    transition: all 0.4s ease;
}

nav.scrolled .logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    transition: var(--transition-base);
    font-size: 15px;
    padding: 5px 0;
    display: inline-block;
    white-space: nowrap;
}

.nav-btn-mobile {
    display: none;
    margin-top: 10px;
}

.nav-btn-mobile .nav-btn {
    display: inline-flex !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-indicator {
    position: absolute;
    bottom: 0px;
    height: 2px;
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
    pointer-events: none;
}

nav.scrolled .nav-indicator {
    bottom: 2px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.1), rgba(0, 210, 255, 0.3), rgba(255, 255, 255, 0.1));
    background-size: 200% auto;
    animation: liquid-flow 8s linear infinite;
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    cursor: pointer;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    line-height: normal;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.1);
}

.nav-btn:hover {
    transform: translateY(-2px) scale(1.02);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    color: white;
}

nav.scrolled .nav-btn {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: 10px;
}

.main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 120px 20px 60px;
    position: relative;
}

.main-content {
    max-width: 900px;
    z-index: 10;
}

.main-title,
.main-desc,
.main-btns {
    opacity: 0;
    animation: mainFadeIn 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.main-title {
    animation-delay: 0.2s;
}

.main-desc {
    animation-delay: 0.4s;
}

.main-btns {
    animation-delay: 0.6s;
}

@keyframes mainFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.main-badge {
    background: rgba(255, 115, 0, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(0, 210, 255, 0.2);
    margin-bottom: 24px;
    display: inline-block;
}

.main h1 {
    font-size: clamp(40px, 8vw, 75px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glowing-text {
    background: var(--primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 15px rgba(0, 210, 255, 0.6));
    animation: text-pulse 2s infinite alternate;
}

@keyframes text-pulse {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.5));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.8));
    }
}

.main p {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-inline: auto;
    font-weight: 600;
}

.main-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.main-btns .nav-btn {
    background: linear-gradient(270deg, rgba(255, 255, 255, 0.1), rgba(0, 210, 255, 0.35), rgba(255, 255, 255, 0.1));
    background-size: 200% auto;
    animation: liquid-flow 6s linear infinite;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 16px;
    padding: 17px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 210, 255, 0.15);
    border: 1px solid rgba(0, 210, 255, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-btns .nav-btn:hover {
    transform: translateY(-3px) scale(1.02);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 15px 50px rgba(0, 210, 255, 0.15);
}

.main-btns .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.6);
    padding: 16px 36px;
    border-radius: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 16px;
}

.main-btns .btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
}

@keyframes liquid-flow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.5s ease, visibility 0.5s;
    animation: scroll-bounce 2s infinite ease-in-out;
}

.scroll-indicator.hidden {
    opacity: 0;
    visibility: hidden;
}

.scroll-indicator p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin: 0;
    font-weight: 600;
}

.mouse {
    width: 22px;
    height: 34px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
    margin-bottom: 5px;
}

.wheel {
    position: absolute;
    top: 6px;
    left: 50%;
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -3px;
}

.arrows span {
    display: block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid var(--text-muted);
    border-right: 2px solid var(--text-muted);
    transform: rotate(45deg);
    margin: -3px;
    animation: arrows-down 1.5s infinite;
}

.arrows span:nth-child(2) {
    animation-delay: 0.1s;
}

.arrows span:nth-child(3) {
    animation-delay: 0.2s;
}

@keyframes scroll-bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 0;
    }

    30% {
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(14px);
        opacity: 0;
    }
}

@keyframes arrows-down {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-3px, -3px);
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) translate(3px, 3px);
    }
}

.section {
    padding: 100px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: start;
}

.services-grid {
    grid-template-columns: repeat(2, 1fr);
}

.why-us-grid {
    grid-template-columns: repeat(3, 1fr);
}

.stats-grid {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {

    .services-grid,
    .why-us-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: var(--radius-lg);
    transition: var(--transition-slow);
    position: relative;
    overflow: hidden;
    will-change: transform;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(0, 210, 255, 0.08),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.product-card:hover::before {
    opacity: 1;
}

.product-badge {
    background: var(--primary);
    color: white;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: inline-block;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.card:hover {
    border-color: var(--primary);
    background: rgba(0, 210, 255, 0.05);
    box-shadow: 0 5px 15px var(--primary-glow);
}

.card i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 24px;
    display: block;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover i {
    filter: drop-shadow(0 0 10px var(--primary));
}

.card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 800;
}

.card p {
    color: var(--text-muted);
}

.stats {
    padding: 80px 0;
    text-align: center;
}

.stat-item {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 20px;
    border-radius: var(--radius-md);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h4 {
    font-size: 48px;
    color: var(--primary);
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-item p {
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.cta-box {
    background: linear-gradient(135deg, rgba(0, 210, 255, 0.1) 0%, rgba(20, 20, 22, 1) 100%);
    border: 1px solid var(--border);
    padding: 60px;
    border-radius: 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.2), transparent 40%);
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary);
}

footer {
    padding: 20px 5% 40px;
    background: var(--bg-body);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 300px;
}

.footer-links h5 {
    font-size: 18px;
    margin-bottom: 24px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(8px);
}

.social-links {
    display: flex;
    gap: 20px;
    list-style: none;
}

.social-links a {
    color: var(--text-muted);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.social-links a:hover {
    color: var(--primary);
    transform: translateY(-5px) scale(1.2);
    filter: drop-shadow(0 0 8px var(--primary-glow));
}

.footer-waves {
    position: relative;
    width: 100%;
    height: 15vh;
    min-height: 100px;
    max-height: 150px;
    margin-bottom: -1px;
    overflow: hidden;
    pointer-events: none;
    contain: paint;
    user-select: none;
    isolation: isolate;
}

.waves {
    position: relative;
    width: 100%;
    height: 100%;
}

.parallax>use {
    animation: move-forever 12s cubic-bezier(.55, .5, .45, .5) infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.parallax>use:nth-child(1) {
    animation-delay: -1s;
    animation-duration: 4s;
}

.parallax>use:nth-child(2) {
    animation-delay: -1.5s;
    animation-duration: 6s;
}

.parallax>use:nth-child(3) {
    animation-delay: -2s;
    animation-duration: 8s;
}

.parallax>use:nth-child(4) {
    animation-delay: -2.5s;
    animation-duration: 12s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
    gap: 20px;
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px var(--primary-glow);
}

.feature-list {
    list-style: none;
    margin-top: 10px;
    flex-grow: 1;
}

.feature-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.4;
    padding: 8px;
    border-radius: 8px;
    transition: var(--transition-base);
}

.feature-list li:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(5px);
}

.feature-list li i {
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 0;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.feature-list li:hover i {
    filter: drop-shadow(0 0 5px var(--primary));
}

.custom-steps {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
    flex-grow: 1;
}

.step-item {
    display: flex;
    gap: 15px;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 12px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition-slow);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    transform: translateX(4px);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.15);
}

.step-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.step-text {
    font-size: 14px;
    line-height: 1.4;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 50px;
}

@media (max-width: 850px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 20px;
    transition: var(--transition-base);
}

.faq-card:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

.faq-card h4 {
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-card h4 i {
    color: var(--primary);
    filter: drop-shadow(0 0 5px var(--primary-glow));
}

.faq-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.tech-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.tech-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 12px 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px var(--primary-glow);
}

.tech-pill i {
    font-size: 20px;
}

.tech-pill i.node-js {
    color: #68A063;
}

.tech-pill i.mongodb {
    color: #47A248;
}

.tech-pill i.cloudflare {
    color: #F38020;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.member-card {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 40px 30px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    border-radius: 28px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    will-change: transform;
    transform-style: preserve-3d;
}

.member-card:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: var(--primary) !important;
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(0, 210, 255, 0.1);
}

.bio_info {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.bio_view {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.05);
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 11px;
    color: var(--text-muted);
}

.member-avatar-wrapper,
.img-container {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 20px auto 15px;
}

.member-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    padding: 3px;
    transition: all 0.5s ease;
}

.member-card:hover .member-avatar {
    border-color: var(--primary);
    transform: scale(1.05);
}

.member-info {
    text-align: center;
    margin-top: 10px;
}

.member-name {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.02em;
    color: white;
    background: linear-gradient(135deg, #fff 60%, rgba(255, 255, 255, 0.5));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.member-role {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    display: block;
}

.status-dot {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 3px solid #0a0a0c;
    background: #747f8d;
    transition: all 0.3s ease;
}

.status-dot.status-online {
    background: #43b581;
    box-shadow: 0 0 10px rgba(67, 181, 129, 0.4);
}

.status-dot.status-idle {
    background: #faa61a;
    box-shadow: 0 0 10px rgba(250, 166, 26, 0.4);
}

.status-dot.status-dnd {
    background: #f04747;
    box-shadow: 0 0 10px rgba(240, 71, 71, 0.4);
}

.status-dot.status-offline {
    background: #747f8d;
}

.bg-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(0, 210, 255, 0.07) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(0, 210, 255, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(0, 210, 255, 0.02) 0%, transparent 60%);
}

.tab-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    min-height: calc(100vh - 100px);
}

.tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse-orange {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 210, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 210, 255, 0);
    }
}

@keyframes liquid {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@media (max-width: 768px) {
    .main {
        padding: 100px 20px 40px;
    }

    .main h1 {
        margin-bottom: 20px;
    }

    .main p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .main-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .main-btns .nav-btn,
    .main-btns .btn-outline {
        width: 100%;
    }

    .section {
        padding: 60px 5%;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .cta-box {
        padding: 40px 20px;
    }

    .cta-box h2 {
        font-size: 32px;
    }

    .stat-item h4 {
        font-size: 36px;
    }

    .card {
        padding: 24px;
    }

    .member-card {
        padding: 24px 15px !important;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-brand p {
        margin-inline: auto;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main h1 {
        font-size: 32px;
    }

    .tech-pill {
        padding: 10px 15px;
        font-size: 13px;
    }
}

.designer-name {
    color: #0072ff;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0, 114, 255, 0.3);
}