:root {
    --bg: #0b0b0c;
    --bg-2: #16161B;
    --text: #ffffff;
    --muted: #cfcfd6;
    --pink: #ff2ea6;
    --purple: #8A2BE2;
    --blue: #00bfff;
    --card: #16161B;
    --stroke: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    color: var(--text);
    background: #0D0D14;
    overflow-x: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.background-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #0D0D14;
}

.background-glow::before,
.background-glow::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background-image: radial-gradient(circle, var(--purple), transparent 60%);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(100px);
    animation: move-glow 25s ease-in-out infinite;
}

.background-glow::after {
    background-image: radial-gradient(circle, var(--blue), transparent 60%);
    animation-name: move-glow-2;
    animation-duration: 30s;
}

@keyframes move-glow {
    0% { transform: translate(-50%, -50%) rotate(0deg) translateX(30%); }
    50% { transform: translate(-50%, -50%) rotate(180deg) translateX(30%); }
    100% { transform: translate(-50%, -50%) rotate(360deg) translateX(30%); }
}

@keyframes move-glow-2 {
    0% { transform: translate(50%, 50%) rotate(0deg) translateX(30%); }
    50% { transform: translate(50%, 50%) rotate(-180deg) translateX(30%); }
    100% { transform: translate(50%, 50%) rotate(-360deg) translateX(30%); }
}

.content-wrapper {
    position: relative;
    z-index: 1;
    flex: 1 0 auto;
}

.container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 20px;
}

button{
    font-family: 'Raleway', sans-serif;
}

header{
    font-family: 'Raleway', sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(13, 13, 20, 0.85); 
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--stroke);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    gap: 16px;
}

.brand {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: .2px;
}

.nav {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 2rem;
    height: 2rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger span {
    width: 1.7rem;
    height: 0.1rem;
    background: var(--text);
    border-radius: 10px;
    transition: all 0.3s linear;
    position: relative;
    transform-origin: 1px;
}

.btn {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn:active {
    transform: translateY(1px);
}

.btn-primary {
    width: 100%;
    color: var(--text);
    font-size: 1.2rem;
    background: transparent;
    border: 1px solid var(--pink);
    box-shadow: 0 0 25px rgba(255, 46, 166, 0.5);
}
.btn-primary:hover {
     background: var(--pink);
     color: var(--white);
}

.btn-outline {
    width: 400;
    color: var(--white);
    background: transparent;
    border: 1px solid var(--stroke);
}

.btn-outline:hover {
    background-color: var(--pink);
    border-color: var(--pink);
}

.w-full {
    width: 100%;
}

.mt-3 {
    margin-top: .75rem;
}

.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: var(--bg-2);
    border-bottom: 1px solid var(--stroke);
    transform: translateY(-150%);
    transition: transform 0.3s ease-in-out;
    z-index: 40;
}


.mobile-menu.is-open {
    transform: translateY(0);
}

.mobile-nav {
    font-family: 'Raleway', sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 12px 20px;
}

.mobile-link {
    color: var(--muted);
    text-decoration: none;
}

section {
    padding: 80px 0;
}

.hero{
    font-family: 'Raleway', sans-serif;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 32px;
    align-items: center;
}

.hero-title {
    font-size: clamp(32px, 5vw, 50px);
    line-height: 1.1;
    margin: 0 0 20px;
    font-weight: 600;
}

.hero-title span {
    background: -webkit-linear-gradient(45deg, var(--pink), var(--white));
    -webkit-background-clip: text;

}


.hero-sub {
    color: var(--muted);

    font-size: 1rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 12px;
    margin: 16px 0 24px;
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    color: var(--muted);
}

.hero-bullets strong {
    color: var(--white);
}

.logo-wrap {
    display: flex;
    aspect-ratio: 1/1;
}

.logo-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
}

.card {
       font-family: 'Raleway', sans-serif;
    background: var(--card);
    border: 1px solid var(--stroke);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
}

.card-head h2 {
    margin: 0;
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
}

.tag {
    border: 1px solid var(--stroke);
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.05);
}

.muted {
    color: var(--muted);
    margin: 0 0 16px;
}

.progress-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 8px 0 12px;
}

.stat {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px;
}

.stat .label {
    color: var(--muted);
    font-size: 12px;
}

.stat .value {
    font-family: "Roboto Mono", monospace;
    display: block;
    font-weight: 800;
    margin-top: 4px;
}

.total-pretty{
        font-family: "Roboto Mono", monospace;
        font-weight: 800;
}

.progress-bar {
    height: 6px;
    background: #0f0f13;
    border-radius: 999px;
    overflow: hidden;
    border: none;
}

.progress-fill {
    height: 100%;
    width: 0%;
    background: var(--pink);
    transition: width .6s cubic-bezier(.22, 1, .36, 1);
}


.progress-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.faq {
    font-family: 'Raleway', sans-serif;
    padding: 80px 0;
}

.section-title {
    font-size: clamp(22px, 3vw, 32px);
    margin: 0 0 16px;
    font-weight: 600;
}

.faq-item {
    border: 1px solid var(--stroke);
    border-radius: 12px;
    padding: 12px 14px;
    margin: 10px 0;
    background: rgba(255, 255, 255, .02);
}

.faq-item>summary {
    cursor: pointer;
    font-weight: 500;
}

.faq-item .faq-content {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease; 
}

.faq-item>p {
    color: var(--muted);
}

.footer {
    font-family: 'Raleway', sans-serif;
    border-top: 1px solid var(--stroke);
    padding: 18px 0;
    background: var(--bg-2);
    flex-shrink: 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.footer a {
    color: var(--muted);
    text-decoration: none;
}

.footer a:hover {
    color: var(--white);
}

@media (max-width: 960px) {
    .hero-bullets{
        text-align: left;
    }
    .hero-left{
        text-align: left;
    }
    .nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }


    .hero-cta {
        justify-content: center;
    }

    .logo-wrap {
        max-width: 380px;
        margin: 0 auto;
    }

    .progress-stats {
        grid-template-columns: 1fr;
    }

    .site-header .btn-outline {
        display: none;
    }
}