/* Alexandria Font import with all weights */
@import url('https://fonts.googleapis.com/css2?family=Alexandria:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  /* Primary Colors */
  --color-dark: #080122;      
  --color-purple: #CD56FF;    
  --color-gray: #D9D9D9;      
  --color-white: #FFFFFF;     
  
  /* Background Colors */
  --bg-primary: var(--color-dark);
  --bg-secondary: var(--color-purple);
  --bg-light: var(--color-gray);
  --bg-white: var(--color-white);
  
  /* Text Colors */
  --text-dark: var(--color-dark);
  --text-accent: var(--color-purple);
  --text-muted: var(--color-gray);
  --text-light: var(--color-white);
  
  --navbar-height: 70px;
  --transition-speed: 0.3s;
  
  /* Font weights */
  --font-thin: 100;
  --font-extralight: 200;
  --font-light: 300;
  --font-regular: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  --font-black: 900;
  
  /* Glow properties */
  --glow-blur: 150px;
  --glow-opacity: 0.3;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
    background-color: var(--bg-primary);
    font-family: 'Alexandria', sans-serif;
    color: var(--text-light);
    background-position: center;
    background-size: cover;
    transition: all var(--transition-speed);
    background-image: url('../images/pattern.svg'), linear-gradient(to bottom right, #080122, #1e1046);
    background-repeat: no-repeat, no-repeat;
    background-position: center top, center center;
    background-size: auto, cover;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    transform: translateZ(0); 
}

body.menu-open {
    overflow: hidden;
}

.top-left-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(205,86,255,0.4) 0%, rgba(205,86,255,0.1) 40%, rgba(205,86,255,0) 70%);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: subtle-pulse 10s ease-in-out infinite;
}

.top-left-glow::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: var(--color-purple);
    border-radius: 50%;
    filter: blur(var(--glow-blur));
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.top-right-glow {
    position: fixed;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(205,86,255,0.4) 0%, rgba(205,86,255,0.1) 40%, rgba(205,86,255,0) 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    animation: subtle-pulse 12s ease-in-out infinite reverse;
}

.top-right-glow::before {
    content: '';
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: var(--color-purple);
    border-radius: 50%;
    filter: blur(var(--glow-blur));
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    padding: 20px 20px 0;
    transition: padding 0.3s ease;
}

.navbar-glow {
    position: absolute;
    width: 1000px;
    height: 700px;
    background: radial-gradient(ellipse at center, rgba(205,86,255,0.5) 0%, rgba(205,86,255,0.2) 30%, rgba(205,86,255,0) 70%);
    border-radius: 50%;
    top: -400px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
}

.navbar-glow::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 600px;
    background: var(--color-purple);
    border-radius: 50%;
    filter: blur(var(--glow-blur));
    opacity: 0.2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.13);
    max-width: 1080px;
    width: 100%;
    height: var(--navbar-height);
    border-radius: 50px;
    padding: 0 30px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.101);
    position: relative;
    z-index: 1;
}

@supports not ((backdrop-filter: blur(10px)) or (-webkit-backdrop-filter: blur(10px))) {
    .navbar-container {
        background-color: rgba(0, 0, 0, 0.75); 
    }
}

.navbar-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-purple), transparent);
    border-radius: 50%;
    filter: blur(3px);
    opacity: 0.7;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 10px;
    width: 50px;
    height: 50px;
    transition: all var(--transition-speed);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
}

.logo-container a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.logo-icon {
    height: 30px;
    width: auto;
    transition: transform var(--transition-speed);
}

.logo-text-link {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-text {
    height: 26px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-menu li {
    padding: 0 15px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: var(--font-medium);
    letter-spacing: 0.2px;
    transition: color var(--transition-speed);
    padding: 8px 0;
    position: relative;
}

.nav-link:hover {
    color: var(--color-purple);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.nav-link.active {
    color: var(--text-light);
    font-weight: var(--font-semibold);
}

.nav-buttons {
    display: flex;
    align-items: center;
}

.login-btn {
    padding: 8px 22px;
    border-radius: 25px;
    font-weight: var(--font-medium);
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 0.95rem;
    background-color: var(--color-purple);
    color: var(--text-light);
    box-shadow: 0 0 15px rgba(205, 86, 255, 0.3);
    letter-spacing: 0.3px;
}

.login-btn:hover {
    background-color: rgba(205, 86, 255, 0.8);
    box-shadow: 0 0 15px rgba(205, 86, 255, 0.5);
    transform: translateY(-2px);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.get-started-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: var(--color-purple);
    color: var(--color-white);
    font-weight: var(--font-medium);
    text-decoration: none;
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(205, 86, 255, 0.4);
    margin-top: 0;
}

.get-started-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(205, 86, 255, 0.6);
    background-color: rgba(205, 86, 255, 0.9);
}

.contact-btn {
    display: inline-block;
    padding: 12px 35px;
    background-color: transparent;
    color: var(--color-white);
    font-weight: var(--font-medium);
    text-decoration: none;
    border: 2px solid var(--color-white);
    border-radius: 30px;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 10;
}

.bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-white);
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(8, 1, 34, 0.98);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-container {
    width: 100%;
    height: 100%;
    max-width: 1200px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.close-menu {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.close-menu i {
    font-size: 20px;
    color: var(--color-white);
}

.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.mobile-nav-link {
    font-size: 24px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: var(--font-light);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav-link.animate-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.mobile-nav-link:hover, 
.mobile-nav-link.active {
    color: var(--text-light);
    transform: translateX(5px);
    font-weight: var(--font-medium);
}

.mobile-footer {
    margin-top: 50px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}

.mobile-menu.active .mobile-footer {
    opacity: 1;
    transform: translateY(0);
}

.mobile-login {
    display: inline-block;
    padding: 12px 35px;
    font-size: 1.1rem;
    font-weight: var(--font-medium);
}

.hero {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px 0;
    position: relative;
    
}

.hero-glow {
    position: absolute;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(205,86,255,0.4) 0%, rgba(205,86,255,0.15) 40%, rgba(205,86,255,0) 70%);
    border-radius: 50%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
    will-change: transform;
    animation: subtle-pulse 8s ease-in-out infinite;
}

.hero-glow::before {
    content: '';
    position: absolute;
    width: 1200px;
    height: 1200px;
    background: var(--color-purple);
    border-radius: 50%;
    filter: blur(var(--glow-blur));
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

@keyframes subtle-pulse {
    0%, 100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.35; transform: translate(-50%, -50%) scale(1.05); }
}

.hero-content {
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-size: 5rem;
    color: var(--color-white);
    font-weight: var(--font-medium);
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.30rem;
    color: var(--text-muted);
    max-width: 600px;
    font-weight: var(--font-regular);
    letter-spacing: 0.5px;
    margin: 0 auto 10px;
}

.hero-image {
    margin-top: 20px;
    position: relative;
    width: 100%;
    max-width: 800px;
    z-index: 1;
}

.phones-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
    transition: transform 0.5s ease;
}

.phones-image:hover {
    transform: translateY(-5px);
}

.content-section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: var(--font-medium);
}

.content-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

@media (max-width: 992px) {
    .nav-menu li {
        padding: 0 10px;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .login-btn {
        padding: 7px 15px;
        font-size: 0.85rem;
    }
    
    .navbar-glow {
        width: 700px;
        height: 500px;
        top: -300px;
    }
    
    .top-left-glow, .top-right-glow {
        width: 600px;
        height: 600px;
    }
    
    .hero-glow {
        width: 800px;
        height: 800px;
    }
    
    .hero-glow::before {
        width: 900px;
        height: 900px;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .phones-image {
        max-width: 80%;
    }
    
    .content-section h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        border-radius: 20px;
        padding: 0 20px;
    }
    
    .hamburger {
        display: block;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-buttons {
        display: none;
    }
    
    .navbar-glow {
        width: 500px;
        height: 400px;
        top: -250px;
    }
    
    .top-left-glow, .top-right-glow {
        width: 500px;
        height: 500px;
    }
    
    .hero-glow {
        width: 600px;
        height: 600px;
    }
    
    .hero-glow::before {
        width: 700px;
        height: 700px;
    }
    
    .hero {
        padding-top: 120px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        font-weight: var(--font-semibold);
    }
    
    .phones-image {
        max-width: 90%;
    }
    
    .hero-buttons {
        flex-direction: row;
        gap: 15px;
    }
    
    .get-started-btn, .contact-btn {
        padding: 10px 30px;
    }
    
    .content-section {
        padding: 60px 20px;
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 10px 10px 0; 
    }
    
    .navbar-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .logo-container {
        width: 40px;
        height: 40px;
        padding: 8px;
        border-radius: 10px;
    }

    .logo-icon {
        height: 22px;
    }
    
    .logo-text {
        height: 24px;
    }
    
    .mobile-nav-link {
        font-size: 20px;
    }
    
    .navbar-glow {
        width: 400px;
        height: 300px;
        top: -200px;
    }
    
    .top-left-glow, .top-right-glow {
        width: 400px;
        height: 400px;
    }
    
    .hero-glow {
        width: 500px;
        height: 500px;
    }
    
    .hero-glow::before {
        width: 600px;
        height: 600px;
    }
    
    .hero {
        padding-top: 100px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .get-started-btn, .contact-btn {
        padding: 8px 25px;
        font-size: 0.9rem;
        width: 200px; 
    }
    
    .content-section h2 {
        font-size: 1.8rem;
    }
    
    .content-section p {
        font-size: 1rem;
    }
}
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-thumb {
background: #a259ff;
border-radius: 6px;
}
::-webkit-scrollbar-track {
background: #f3eaff;
}

html {
scrollbar-color: #a259ff #f3eaff;
scrollbar-width: thin;
}