


/* ========================================
Global / Base
======================================== */
body {
    --vz-success: rgb(67, 173, 255) !important;
}

html {
    scroll-behavior: smooth;
}

.auth-page-content {
    padding-bottom: 0 !important;
}

.nav-link {
    font-size: 14px !important;
}

/* ========================================
Navbar
======================================== */
#navbar {
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}

.navbar-landing .nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.8) !important;
    transition: color 0.3s ease;
}

.navbar-landing .nav-link:hover {
    color: rgba(255, 255, 255, 1) !important;
}

.navbar-landing .nav-link.active {
    color: rgb(67, 173, 255) !important;
    font-weight: 500;
}

/* ========================================
Hero Shader Background
======================================== */
#clipfi-hero-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    z-index: 0;
    overflow: hidden;
}

#clipfi-hero-bg canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

/* ========================================
Hero Layout
======================================== */
.clipfi-hero-container {
    position: relative;
    z-index: 1;
    /* above shader */
    width: 100%;
    min-height: calc(100vh - 72px);
    /* viewport minus navbar */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 72px;
    box-sizing: border-box;
}

.clipfi-hero-inner {
    max-width: 540px;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    text-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
}

.clipfi-hero-heading-tag {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 11px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.clipfi-hero-title {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: -0.03em;
    font-weight: 800;
}

.clipfi-hero-subtitle {
    font-size: 1rem;
    max-width: 480px;
    margin: 0 auto 32px;
    color: rgba(223, 231, 255, 0.88);
}

.clipfi-hero-subtitle span {
    color: rgb(67, 173, 255);
    font-weight: 600;
}

/* ========================================
Hero Login Card
======================================== */
.clipfi-login-card {
    background: rgba(10, 10, 10, 0.55);
    padding: 28px 30px;
    border-radius: 14px;
    backdrop-filter: blur(22px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
    margin: 0 auto 32px auto;
    transition: 0.3s ease;
}

.clipfi-login-card:hover {
    background: rgba(10, 10, 10, 0.62);
    border-color: rgba(255, 255, 255, 0.18);
}

.clipfi-login-card h4 {
    font-size: 15px;
    margin-bottom: 18px;
    color: #ffffff;
}

.clipfi-login-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 18px;
}

.login-btn {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.2s ease;
}

.login-btn:hover {
    transform: translateY(-3px);
    border-color: rgba(67, 173, 255, 0.4);
}

.login-btn img {
    width: 50px !important;
    height: 50px !important;
}

.clipfi-login-note {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
}

.clipfi-cta {
    display: inline-block;
    padding: 12px 34px;
    border-radius: 26px;
    font-size: 15px;
    color: rgb(67, 173, 255);
    border: 2px solid rgba(67, 173, 255, 0.35);
    background: rgba(67, 173, 255, 0.1);
    text-decoration: none;
    transition: 0.25s ease;
}

.clipfi-cta:hover {
    border-color: rgb(67, 173, 255);
    background: rgba(67, 173, 255, 0.18);
    box-shadow: 0 10px 30px rgba(67, 173, 255, 0.22);
}

/* Mobile hero tweaks */
@media (max-width: 768px) {
    .clipfi-hero-container {
        padding: 96px 16px 40px;
        min-height: calc(100vh - 64px);
    }

    .clipfi-hero-title {
        font-size: 2.1rem;
    }

    .clipfi-hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 24px;
    }
}

/* ========================================
Section / Cards / FAQ / Footer
======================================== */
section div.container {
    padding-top: 80px;
    padding-bottom: 80px;
}

section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

section h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

.fs-14 {
    font-size: 14px;
}

.hover-tokfi:hover {
    color: rgb(67, 173, 255) !important;
}

/* How-it-works & generic cards */
.how-it-works-card {
    background: rgba(30, 30, 30, 0.5);
    border: 1px solid rgba(67, 173, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.how-it-works-card:hover {
    background: rgba(40, 40, 40, 0.7);
    border-color: rgba(67, 173, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(67, 173, 255, 0.2);
}

.step-number {
    background: linear-gradient(135deg, rgba(67, 173, 255, 0.2), rgba(255, 62, 184, 0.2));
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    color: rgb(67, 173, 255);
    border: 2px solid rgba(67, 173, 255, 0.3);
    box-shadow: 0 4px 12px rgba(67, 173, 255, 0.3);
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(67, 173, 255, 0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.how-it-works-card:hover .icon-box {
    background: rgba(67, 173, 255, 0.15);
    transform: scale(1.1);
}

.clip-token-card {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.clip-token-card:hover {
    border-color: rgba(67, 173, 255, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 30px rgba(67, 173, 255, 0.2);
}

.clip-thumbnail {
    position: relative;
    height: 200px;
    background: #1a1a1a;
}

.placeholder-img {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.clip-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.clip-token-body {
    background: rgba(20, 20, 20, 0.6);
}

/* Accordion (FAQ) */
.accordion-dark .accordion-item {
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 16px;
    border-radius: 12px;
    overflow: hidden;
}

.accordion-dark .accordion-button {
    background: rgba(30, 30, 30, 0.6);
    color: rgba(255, 255, 255, 0.9);
    border: none;
    font-weight: 500;
    padding: 20px;
}

.accordion-dark .accordion-button:not(.collapsed) {
    background: rgba(67, 173, 255, 0.1);
    color: rgb(67, 173, 255);
    box-shadow: none;
}

.accordion-dark .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(67, 173, 255, 0.3);
}

.accordion-dark .accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-dark .accordion-body {
    background: rgba(20, 20, 20, 0.4);
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
}

/* Buttons / badges */
.btn-trade {
    background: linear-gradient(135deg, rgb(67, 173, 255), rgb(47, 133, 215)) !important;
    border: none !important;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.btn-trade:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 173, 255, 0.4) !important;
}

.btn-secondary {
    background: rgba(67, 173, 255, 0.15) !important;
    border: 2px solid rgba(67, 173, 255, 0.4) !important;
    color: rgb(67, 173, 255) !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: rgba(67, 173, 255, 0.25) !important;
    border-color: rgb(67, 173, 255) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(67, 173, 255, 0.3) !important;
}

.badge {
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 173, 255, 0.3);
}

/* Footer */
.footer-section {
    border-top: 1px solid rgba(67, 173, 255, 0.1);
}

.footer-brand h3 {
    font-size: 2rem;
}

.footer-links a {
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: rgb(67, 173, 255) !important;
    transform: translateX(5px);
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(30, 30, 30, 0.6);
    border: 1px solid rgba(67, 173, 255, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(67, 173, 255, 0.1);
    border-color: rgb(67, 173, 255);
    color: rgb(67, 173, 255) !important;
    transform: translateY(-3px);
}

/* Clip Points banner: no extra glow overlay */
.section.py-4 {
    background: none !important;
    position: relative;
    overflow: hidden;
}

/* Remove decorative lines / dividers */
.section-divider,
.section.py-4::before,
section h2::after {
    display: none !important;
    background: none !important;
    box-shadow: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step-number {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
    }
}


#hero {
    padding: 0 0 0 0 !important;
}



:root {
    --clipfi-primary: #43adff;
    --clipfi-primary-soft: rgba(67, 173, 255, 0.18);
    --clipfi-text-main: rgba(244, 248, 255, 0.98);
    --clipfi-text-sub: rgba(220, 230, 250, 0.88);
}

/* HERO BACKGROUND CANVAS */
#clipfi-hero-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

#clipfi-hero-bg canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    pointer-events: none;
}

/* HERO CONTAINER */
.clipfi-hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 160px 20px 140px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
}

/* dark “spotlight” behind content for readability */
.clipfi-hero-container::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -10%;
    width: min(960px, 100%);
    height: 140%;
    /* extends below hero to avoid a line */
    background:
        radial-gradient(circle at 50% 0,
            rgba(0, 0, 0, 0.88) 0,
            rgba(0, 0, 0, 0.78) 30%,
            rgba(0, 0, 0, 0.65) 55%,
            transparent 85%);
    pointer-events: none;
    z-index: -1;
}

.clipfi-hero-container::before {
    content: none;
}

.clipfi-hero-inner {
    width: 100%;
    max-width: 640px;
    margin: 0 auto;
}

/* BADGE */
.clipfi-hero-heading-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(240, 244, 255, 0.9);
    background: rgba(0, 0, 0, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    margin-bottom: 18px;
}

/* TITLE */
.clipfi-hero-title {
    font-size: 3.2rem;
    line-height: 1.07;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--clipfi-text-main);
    margin-bottom: 16px;
    text-shadow:
        0 22px 60px rgba(0, 0, 0, 0.9),
        0 0 18px rgba(0, 0, 0, 0.6);
}

/* SUBTITLE */
.clipfi-hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 520px;
    margin: 0 auto 34px;
    color: var(--clipfi-text-sub);
    text-shadow: 0 14px 40px rgba(0, 0, 0, 0.85);
}

.clipfi-hero-subtitle span {
    color: var(--clipfi-primary);
    font-weight: 600;
}

/* LOGIN CARD */
.clipfi-login-card {
    background: rgba(4, 6, 14, 0.78);
    border-radius: 18px;
    padding: 26px 34px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(26px) saturate(150%);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.75),
        0 0 40px rgba(10, 30, 60, 0.35);
    margin: 0 auto 30px;
}

.clipfi-login-card h4 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: var(--clipfi-text-main);
    opacity: 0.9;
}

.clipfi-login-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 18px;
}

.login-btn {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 0, rgba(255, 255, 255, 0.14), rgba(0, 0, 0, 0.88));
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.7);
}

.login-btn:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: var(--clipfi-primary-soft);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.85);
}

.login-btn img {
    width: 30px;
    height: 30px;
}

.clipfi-login-note {
    font-size: 12px;
    color: rgba(225, 233, 252, 0.8);
}

.clipfi-login-note b {
    color: var(--clipfi-text-main);
}

/* CTA BUTTON */
.clipfi-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
    padding: 11px 34px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--clipfi-text-main);
    text-decoration: none;
    border: 1px solid rgba(120, 184, 255, 0.7);
    background: radial-gradient(circle at 50% 0,
            rgba(67, 173, 255, 0.32),
            rgba(3, 10, 26, 0.92));
    box-shadow: 0 14px 40px rgba(20, 60, 120, 0.8);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.clipfi-cta:hover {
    transform: translateY(-2px);
    border-color: var(--clipfi-primary);
    box-shadow: 0 18px 48px rgba(20, 60, 120, 0.95);
}

/* NAV LINKS SMALL TWEAK (for readability on bright bg) */
.navbar-landing .nav-link {
    color: rgba(238, 244, 255, 0.8) !important;
    font-weight: 500;
}

.navbar-landing .nav-link.active {
    color: var(--clipfi-primary) !important;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .clipfi-hero-container {
        padding: 110px 18px 72px;
    }

    .clipfi-hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .clipfi-hero-container {
        padding: 96px 16px 56px;
    }

    .clipfi-hero-title {
        font-size: 2.1rem;
        letter-spacing: -0.04em;
    }

    .clipfi-hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 26px;
    }

    .clipfi-login-card {
        padding: 22px 18px 20px;
    }
}



#about {
    margin-top: -52px !important;
    padding-top: 160px;
    background: #000000 !important;
    /* same as body */
}


.clipfi-hero-subtitle {
    color: rgba(230, 240, 255, 0.92);
    text-shadow: 0 0 22px rgba(0, 0, 0, 0.85);
}



.clipfi-login-card .login-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.12) 50%,
            rgba(255, 255, 255, 0) 100%);
    margin: 0 auto 22px auto;
}


.clipfi-tagline-small {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #bdbdbd;
    opacity: 0.9;
}

.clipfi-tagline-small span {
    color: #3ea6ff;
    /* your accent blue */
    font-weight: 600;
}




/* ============================
"What is ClipFi?" section
============================ */

#about {
    padding-top: 120px;
    padding-bottom: 96px;

    position: relative;

}

#about .text-center h2 {
    font-size: 2.6rem;
    letter-spacing: -0.04em;
    margin-bottom: 20px;
}

#about .lead {
    max-width: 880px;
    margin: 0 auto 8px;
    color: rgba(230, 240, 255, 0.85);
}

/* tagline: "Token launches are free for everyone." */
.clipfi-tagline-small {
    margin-top: 8px;
    margin-bottom: 28px;
    font-size: 0.95rem;
    color: rgba(210, 220, 240, 0.9);
}

.clipfi-tagline-small span {
    color: var(--clipfi-primary, #43adff);
    font-weight: 600;
}

/* feature pills under the paragraph */
#about .badge {
    background: rgba(10, 10, 10, 0.9);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

#about .badge i {
    font-size: 14px;
}
