@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

:root{
    --bg-color: #0d0d2b; /* Deeper, more tech-looking purple */
    --accent-color: #23D160;
    --secondary-accent: #00D084;
    --blue-accent: #006CFF;
    --btn-color: #ffffff;
    --btn-bg: #23D160;
    --primary-text-color: #23D160;
    --header-link-hover: #23D160;
    --input-hover-bd-color: #23D160;
    --error-color: #FF6B6B;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

html {
    scroll-behavior: smooth;
    font-family: "Manrope", sans-serif;
    background-color: var(--bg-color);
}

body {
    background: radial-gradient(circle at top right, #1e1e50 0%, #0d0d2b 100%);
    color: #fff;
    overflow-x: hidden;
    line-height: 1.6;
}

header{
    color: #ffffff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

header > .collapsible-header{
    display: flex;
    gap: 1rem;
    width: 100%;
    background-color: inherit;
    place-content: center;
    overflow: hidden;
    transition: width 0.3s ease;
}

.animated-collapse{
    transition: width 0.3s ease;
}

.header-links {
    display: flex;
    align-items: center;
    min-width: fit-content;
    border-radius: 5px;
    padding: 5px 15px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.header-links:hover {
    color: var(--accent-color);
    opacity: 1;
    transform: translateY(-1px);
}

.primary-text-color{
    color: var(--primary-text-color);
}

.gradient-text{
    background: linear-gradient(135deg, #23D160 0%, #00D084 50%, #006CFF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(35, 209, 96, 0.2));
}

.hero-img-bg-grad{
    background: radial-gradient(circle, rgba(35, 209, 96, 0.3) 0%, rgba(0, 108, 255, 0.3) 100%);
    filter: blur(100px);
    opacity: 0.6;
    z-index: -1;
}

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-12px);
    box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.6);
}

#dashboard {
    transform: perspective(1500px) rotateX(15deg) scale(0.95);
    transition: all 0.8s ease;
    border-radius: 40px;
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
}

.border-gradient{
    background: linear-gradient(180deg, #23D160 0%, rgba(0, 208, 132, 0) 100%);
    padding: 1px;
    border-radius: 24px;
}

.border-gradient > div {
    background-color: var(--bg-color);
    border-radius: inherit;
}

.btn{
    padding: 16px 36px;
    width: max-content;
    border-radius: 100px;
    color: #000;
    background: #23D160;
    justify-content: center;
    align-items: center;
    display: flex;
    cursor: pointer;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    outline: none;
    box-shadow: 0 10px 20px rgba(35, 209, 96, 0.3);
}

.btn:hover{
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 15px 30px rgba(35, 209, 96, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: white !important;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.input{
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.input:focus {
    border-color: var(--accent-color);
    background: rgba(255, 255, 255, 0.1);
}

/* FAQ Accordion Styling */
.faq-accordion {
    background-color: transparent;
    color: #fff;
    cursor: pointer;
    padding: 20px 24px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.faq .content {
    padding: 0 24px;
    color: #a0a0c0;
    overflow: hidden;
    max-height: 0;
    transition: all 0.4s ease-out;
}

.faq.active .content {
    padding-bottom: 24px;
}

/* Responsive fixes */
@media not all and (min-width: 1024px) {
    header .collapsible-header {
        background-color: var(--bg-color);
        box-shadow: none;
        border-left: 1px solid rgba(255, 255, 255, 0.05);
    }
}