/* =====================================================
   FUTUREVERSE — PAGE 1
   MAIN STYLESHEET
===================================================== */


/* =====================================================
   1. RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #02050c;
    color: #ffffff;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
}


/* =====================================================
   2. MAIN PAGE
===================================================== */

.page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #02050c;
}


/* =====================================================
   3. HERO BACKGROUND
===================================================== */

.page::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100vh;

    background-image: url("assets/background.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;

    z-index: 0;
}


/* Dark overlay */

.background-overlay {
    position: absolute;
    inset: 0;

    height: 100vh;

    background:
        linear-gradient(
            90deg,
            rgba(2, 5, 12, 0.95) 0%,
            rgba(2, 5, 12, 0.70) 35%,
            rgba(2, 5, 12, 0.20) 70%,
            rgba(2, 5, 12, 0.45) 100%
        );

    z-index: 1;
}


/* =====================================================
   4. NAVBAR
===================================================== */

.navbar {
    position: relative;
    z-index: 10;

    height: 82px;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background: rgba(2, 6, 15, 0.72);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}


/* =====================================================
   5. LOGO
===================================================== */

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
}

.logo-symbol {
    position: relative;

    width: 42px;
    height: 42px;

    border: 3px solid #38bdf8;
    border-radius: 50%;

    transform: rotate(-18deg);

    box-shadow:
        0 0 12px rgba(56, 189, 248, 0.65);
}

.logo-symbol::after {
    content: "";

    position: absolute;

    width: 52px;
    height: 15px;

    left: -8px;
    top: 11px;

    border: 2px solid #ffffff;
    border-radius: 50%;

    transform: rotate(-18deg);
}

.logo-symbol span {
    position: absolute;

    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #ffffff;

    right: 3px;
    top: 4px;
}


.logo-text h2 {
    font-size: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.logo-text h2 span {
    color: #29b6ff;
}

.logo-text p {
    margin-top: 2px;

    font-size: 7px;
    letter-spacing: 2px;

    color: rgba(255, 255, 255, 0.65);
}


/* =====================================================
   6. DESKTOP NAVIGATION
===================================================== */

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 38px;
}

.desktop-nav a {
    position: relative;

    font-size: 15px;
    color: rgba(255, 255, 255, 0.82);

    transition: 0.3s ease;
}

.desktop-nav a:hover {
    color: #38bdf8;
}

.desktop-nav a.active {
    color: #38bdf8;
}

.desktop-nav a.active::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -10px;

    width: 100%;
    height: 2px;

    background: #38bdf8;

    box-shadow: 0 0 10px #38bdf8;
}


/* =====================================================
   7. NAV BUTTON
===================================================== */

.nav-button {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 13px 22px;

    border-radius: 30px;

    background:
        linear-gradient(
            135deg,
            #3b82f6,
            #2563eb 50%,
            #22c3ee
        );

    font-size: 14px;
    font-weight: 700;

    box-shadow:
        0 8px 25px rgba(37, 99, 235, 0.35);

    transition: 0.3s ease;
}

.nav-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 12px 35px rgba(37, 99, 235, 0.55);
}

.nav-button span {
    font-size: 20px;
}


/* =====================================================
   8. MOBILE MENU BUTTON
===================================================== */

.mobile-menu-button {
    display: none;

    width: 42px;
    height: 42px;

    border: none;
    background: transparent;

    cursor: pointer;
}

.mobile-menu-button span {
    display: block;

    width: 25px;
    height: 2px;

    margin: 5px auto;

    background: #ffffff;

    transition: 0.3s;
}


/* =====================================================
   9. MOBILE MENU
===================================================== */

.mobile-menu {
    display: none;

    position: absolute;

    top: 82px;
    left: 0;

    width: 100%;

    padding: 20px;

    background: rgba(3, 7, 17, 0.97);

    backdrop-filter: blur(18px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.10);

    z-index: 20;
}

.mobile-menu a {
    display: block;

    padding: 15px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);

    color: #ffffff;
}


/* =====================================================
   10. HERO
===================================================== */

.hero {
    position: relative;
    z-index: 5;

    min-height: calc(100vh - 82px);

    display: flex;
    align-items: center;

    padding: 70px 7% 100px;
}


/* =====================================================
   11. HERO CONTENT
===================================================== */

.hero-content {
    width: 55%;
    max-width: 700px;

    position: relative;
    z-index: 5;
}


/* =====================================================
   12. STATUS BADGE
===================================================== */

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 16px;

    margin-bottom: 25px;

    border: 1px solid rgba(56, 189, 248, 0.55);

    border-radius: 30px;

    background: rgba(2, 10, 25, 0.55);

    backdrop-filter: blur(10px);

    font-size: 13px;

    color: #e8f7ff;
}

.status-dot {
    width: 9px;
    height: 9px;

    border-radius: 50%;

    background: #22c55e;

    box-shadow:
        0 0 10px #22c55e;
}


/* =====================================================
   13. HERO TITLE
===================================================== */

.hero-title h1 {
    font-size: clamp(55px, 6vw, 92px);

    line-height: 0.95;

    font-weight: 900;

    letter-spacing: -4px;

    text-shadow:
        0 5px 30px rgba(0, 0, 0, 0.45);
}

.hero-title h1 span {
    display: inline-block;

    background:
        linear-gradient(
            90deg,
            #38bdf8,
            #3b82f6,
            #8b5cf6
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


/* =====================================================
   14. HERO SUBTITLE
===================================================== */

.hero-subtitle {
    margin-top: 25px;

    font-size: clamp(25px, 3vw, 38px);

    font-weight: 500;

    letter-spacing: -1px;
}

.hero-subtitle span {
    color: #38bdf8;
}


/* =====================================================
   15. HERO DESCRIPTION
===================================================== */

.hero-description {
    max-width: 600px;

    margin-top: 20px;

    font-size: 17px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.78);
}


/* =====================================================
   16. HERO BUTTONS
===================================================== */

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 35px;
}


/* Primary */

.primary-button {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 16px 27px;

    border-radius: 35px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #38bdf8
        );

    font-size: 16px;
    font-weight: 700;

    box-shadow:
        0 10px 35px rgba(37, 99, 235, 0.40);

    transition: 0.3s ease;
}

.primary-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 40px rgba(37, 99, 235, 0.60);
}

.primary-button strong {
    font-size: 21px;
}


/* Secondary */

.secondary-button {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 15px 23px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    border-radius: 35px;

    background: rgba(0, 0, 0, 0.20);

    backdrop-filter: blur(10px);

    font-size: 14px;

    transition: 0.3s ease;
}

.secondary-button:hover {
    border-color: #38bdf8;

    color: #38bdf8;

    transform: translateY(-2px);
}


/* =====================================================
   17. KEYWORDS
===================================================== */

.hero-keywords {
    display: flex;
    align-items: center;
    gap: 15px;

    margin-top: 35px;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.75);

    letter-spacing: 0.5px;
}

.hero-keywords i {
    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #38bdf8;

    box-shadow:
        0 0 8px #38bdf8;
}


/* =====================================================
   18. HERO VISUAL TEXT
===================================================== */

.hero-visual {
    position: absolute;

    right: 7%;
    top: 50%;

    transform: translateY(-50%);

    width: 28%;
    height: 65%;

    pointer-events: none;
}

.visual-text {
    position: absolute;

    writing-mode: vertical-rl;

    font-size: 11px;

    letter-spacing: 5px;

    color: rgba(255, 255, 255, 0.65);
}

.top-text {
    right: 0;
    top: 10%;
}

.middle-text {
    right: 30px;
    top: 43%;
}

.bottom-text {
    right: 0;
    bottom: 10%;
}


/* =====================================================
   19. VISION SECTION
===================================================== */

.vision-section {
    position: relative;
    z-index: 5;

    padding: 120px 7%;

    background:
        linear-gradient(
            180deg,
            #02050c 0%,
            #050b17 100%
        );
}

.section-heading {
    max-width: 700px;

    margin: 0 auto 60px;

    text-align: center;
}

.section-heading > span,
.section-label {
    font-size: 12px;

    letter-spacing: 4px;

    color: #38bdf8;
}

.section-heading h2 {
    margin-top: 18px;

    font-size: clamp(35px, 5vw, 60px);

    line-height: 1.05;

    letter-spacing: -2px;
}

.section-heading h2 span {
    color: #38bdf8;
}

.section-heading p {
    margin-top: 20px;

    color: rgba(255, 255, 255, 0.65);

    line-height: 1.7;
}


/* =====================================================
   20. FEATURE GRID
===================================================== */

.feature-grid {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;

    max-width: 1250px;

    margin: auto;
}


/* =====================================================
   21. FEATURE CARD
===================================================== */

.feature-card {
    padding: 30px 25px;

    min-height: 220px;

    border: 1px solid rgba(56, 189, 248, 0.14);

    border-radius: 18px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 23, 42, 0.90),
            rgba(4, 10, 20, 0.90)
        );

    transition: 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-7px);

    border-color:
        rgba(56, 189, 248, 0.55);

    box-shadow:
        0 15px 45px rgba(0, 0, 0, 0.35);
}

.feature-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 25px;

    border-radius: 14px;

    background:
        rgba(37, 99, 235, 0.15);

    border: 1px solid
        rgba(56, 189, 248, 0.30);

    color: #38bdf8;

    font-size: 25px;
}

.feature-card h3 {
    font-size: 20px;

    margin-bottom: 12px;
}

.feature-card p {
    font-size: 14px;

    line-height: 1.6;

    color: rgba(255, 255, 255, 0.60);
}


/* =====================================================
   22. WHY SECTION
===================================================== */

.why-section {
    position: relative;
    z-index: 5;

    padding: 100px 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;

    background: #02050c;
}

.why-content {
    max-width: 650px;
}

.why-content h2 {
    margin-top: 20px;

    font-size: clamp(40px, 5vw, 68px);

    line-height: 1;

    letter-spacing: -3px;
}

.why-content h2 span {
    display: block;

    color: #38bdf8;
}

.why-content p {
    margin-top: 20px;

    font-size: 24px;

    color: rgba(255, 255, 255, 0.65);
}


/* =====================================================
   23. QUOTE BOX
===================================================== */

.quote-box {
    width: 420px;

    padding: 40px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 24, 45, 0.95),
            rgba(4, 10, 20, 0.95)
        );

    border: 1px solid
        rgba(56, 189, 248, 0.20);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.30);
}

.quote-mark {
    font-size: 60px;

    line-height: 0.7;

    color: #38bdf8;
}

.quote-box p {
    margin-top: 20px;

    font-size: 23px;

    line-height: 1.5;
}

.quote-box span {
    display: block;

    margin-top: 25px;

    color: #38bdf8;

    font-size: 14px;
}


/* =====================================================
   24. FINAL SECTION
===================================================== */

.final-section {
    position: relative;
    z-index: 5;

    padding: 130px 20px;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(37, 99, 235, 0.18),
            transparent 55%
        ),
        #02050c;
}

.final-section > span {
    font-size: 11px;

    letter-spacing: 5px;

    color: #38bdf8;
}

.final-section h2 {
    margin-top: 20px;

    font-size: clamp(40px, 6vw, 75px);

    letter-spacing: -3px;
}

.final-section h2 strong {
    color: #38bdf8;
}

.final-section p {
    margin-top: 18px;

    color: rgba(255, 255, 255, 0.65);
}

.final-button {
    display: inline-flex;
    align-items: center;
    gap: 18px;

    margin-top: 35px;

    padding: 17px 32px;

    border-radius: 40px;

    background:
        linear-gradient(
            135deg,
            #2563eb,
            #38bdf8
        );

    font-weight: 700;

    box-shadow:
        0 10px 35px rgba(37, 99, 235, 0.40);

    transition: 0.3s ease;
}

.final-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 15px 45px rgba(37, 99, 235, 0.60);
}

.final-button span {
    font-size: 20px;
}


/* =====================================================
   25. FOOTER
===================================================== */

.footer {
    position: relative;
    z-index: 5;

    padding: 45px 20px 30px;

    text-align: center;

    background: #010308;

    border-top: 1px solid
        rgba(255, 255, 255, 0.08);
}

.footer-logo {
    font-size: 25px;

    font-weight: 800;
}

.footer-logo span {
    color: #38bdf8;
}

.footer p {
    margin-top: 8px;

    font-size: 9px;

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.50);
}

.footer-line {
    width: 80px;
    height: 1px;

    margin: 25px auto;

    background: #38bdf8;

    box-shadow:
        0 0 10px #38bdf8;
}

.footer small {
    color: rgba(255, 255, 255, 0.40);

    font-size: 11px;
}


/* =====================================================
   26. ANIMATIONS
===================================================== */

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

.hero-content {
    animation:
        fadeUp 1s ease forwards;
}


/* =====================================================
   27. TABLET
===================================================== */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 20px;
    }

    .hero {
        padding-left: 5%;
        padding-right: 5%;
    }

    .hero-content {
        width: 65%;
    }

    .hero-visual {
        right: 3%;
        width: 25%;
    }

    .feature-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .why-section {
        padding-left: 5%;
        padding-right: 5%;
    }

}


/* =====================================================
   28. MOBILE
===================================================== */

@media (max-width: 700px) {

    /* Navbar */

    .navbar {
        height: 70px;

        padding:
            0 20px;
    }

    .logo-symbol {
        width: 34px;
        height: 34px;
    }

    .logo-symbol::after {
        width: 42px;
        height: 12px;

        left: -7px;
        top: 9px;
    }

    .logo-text h2 {
        font-size: 21px;
    }

    .logo-text p {
        font-size: 5px;
        letter-spacing: 1.5px;
    }

    .desktop-nav,
    .nav-button {
        display: none;
    }

    .mobile-menu-button {
        display: block;
    }


    /* Background */

    .page::before {
        height: 100vh;

        background-position:
            58% center;
    }

    .background-overlay {
        height: 100vh;

        background:
            linear-gradient(
                180deg,
                rgba(2, 5, 12, 0.72) 0%,
                rgba(2, 5, 12, 0.78) 40%,
                rgba(2, 5, 12, 0.96) 100%
            );
    }


    /* Hero */

    .hero {
        min-height: calc(100vh - 70px);

        padding:
            60px 22px 80px;

        align-items: flex-start;
    }

    .hero-content {
        width: 100%;
    }

    .status-badge {
        font-size: 11px;

        padding:
            8px 13px;

        margin-bottom: 20px;
    }

    .hero-title h1 {
        font-size: clamp(47px, 14vw, 65px);

        letter-spacing: -3px;
    }

    .hero-subtitle {
        margin-top: 20px;

        font-size: 25px;
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.65;

        max-width: 400px;
    }


    /* Buttons */

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;

        margin-top: 28px;
    }

    .primary-button,
    .secondary-button {
        justify-content: center;

        width: 100%;
    }


    /* Keywords */

    .hero-keywords {
        flex-wrap: wrap;

        gap: 10px;

        margin-top: 28px;

        font-size: 11px;
    }


    /* Visual text */

    .hero-visual {
        display: none;
    }


    /* Vision */

    .vision-section {
        padding:
            80px 20px;
    }

    .section-heading {
        margin-bottom: 40px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .section-heading p {
        font-size: 14px;
    }


    /* Feature cards */

    .feature-grid {
        grid-template-columns: 1fr;

        gap: 14px;
    }

    .feature-card {
        min-height: auto;

        padding: 25px;
    }


    /* Why */

    .why-section {
        padding:
            80px 20px;

        flex-direction: column;

        align-items: stretch;

        gap: 40px;
    }

    .why-content h2 {
        font-size: 45px;

        letter-spacing: -2px;
    }

    .quote-box {
        width: 100%;

        padding: 30px;
    }

    .quote-box p {
        font-size: 19px;
    }


    /* Final */

    .final-section {
        padding:
            90px 20px;
    }

    .final-section h2 {
        font-size: 43px;
    }

    .final-section > span {
        font-size: 9px;

        letter-spacing: 3px;
    }


    /* Footer */

    .footer {
        padding:
            35px 20px 25px;
    }

}


/* =====================================================
   29. SMALL MOBILE
===================================================== */

@media (max-width: 400px) {

    .hero-title h1 {
        font-size: 44px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .hero-description {
        font-size: 13px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .why-content h2 {
        font-size: 38px;
    }

    .final-section h2 {
        font-size: 37px;
    }

}



























/* =========================================================
   FUTUREVERSE — INTRODUCTION / TEAM REGISTRATION
   WHITE PREMIUM DESIGN
   ========================================================= */

.registration-page {
    min-height: 100vh;
    margin: 0;
    background: #ffffff;
    color: #111827;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   SAME FUTUREVERSE BACKGROUND
   ========================================================= */

.registration-background {
    position: fixed;
    inset: 0;
    z-index: 0;

    background-image:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.97) 0%,
            rgba(255,255,255,0.91) 42%,
            rgba(255,255,255,0.45) 100%
        ),
        url("assets/background.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    pointer-events: none;
}


/* =========================================================
   HEADER
   ========================================================= */

.registration-header {
    position: relative;
    z-index: 10;

    width: 100%;
    box-sizing: border-box;

    padding: 20px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(255,255,255,0.88);

    border-bottom: 1px solid rgba(17,24,39,0.08);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.registration-logo {
    display: flex;
    align-items: center;
    gap: 11px;

    text-decoration: none;
    color: #111827;
}

.registration-logo-symbol {
    width: 40px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 11px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;

    background: linear-gradient(
        135deg,
        #315bea,
        #7047e8
    );

    box-shadow:
        0 8px 22px rgba(49,91,234,0.22);
}

.registration-logo-name {
    font-size: 19px;
    font-weight: 750;
    letter-spacing: -0.2px;
}

.back-home {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 10px 16px;

    border: 1px solid #e2e5eb;
    border-radius: 9px;

    background: rgba(255,255,255,0.85);

    color: #374151;

    text-decoration: none;

    font-size: 13px;
    font-weight: 600;

    transition: 0.2s ease;
}

.back-home:hover {
    border-color: #b8c5ef;
    color: #315bea;
    background: #f8faff;
}


/* =========================================================
   MAIN
   ========================================================= */

.registration-main {
    position: relative;
    z-index: 2;

    width: min(900px, 90%);
    margin: 0 auto;

    padding: 70px 0 75px;
}


/* =========================================================
   INTRODUCTION
   ========================================================= */

.registration-intro {
    max-width: 760px;

    margin: 0 auto 42px;

    text-align: center;
}

.registration-label {
    display: inline-block;

    margin-bottom: 13px;

    color: #315bea;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;
    text-transform: uppercase;
}

.registration-intro h1 {
    margin: 0 0 16px;

    color: #111827;

    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;

    letter-spacing: -2px;
}

.registration-intro p {
    max-width: 680px;

    margin: 0 auto;

    color: #667085;

    font-size: 16px;
    line-height: 1.75;
}

.intro-note {
    margin-top: 17px;

    color: #315bea;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================================
   LAYOUT
   No right-side extra content
   ========================================================= */

.registration-layout {
    display: block;
    width: 100%;
}


/* =========================================================
   REGISTRATION CARD
   ========================================================= */

.registration-card {
    width: 100%;
    box-sizing: border-box;

    padding: 38px;

    background: rgba(255,255,255,0.97);

    border: 1px solid #e6e8ed;
    border-radius: 22px;

    box-shadow:
        0 22px 60px rgba(15,23,42,0.12);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* =========================================================
   FORM HEADER
   ========================================================= */

.form-header {
    margin-bottom: 30px;
}

.form-kicker {
    margin-bottom: 7px;

    color: #315bea;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 1.7px;
}

.form-header h2 {
    margin: 0;

    color: #111827;

    font-size: 27px;
    line-height: 1.25;
}

.form-header p {
    margin: 9px 0 0;

    color: #7a8496;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================================
   FORM SECTIONS
   ========================================================= */

.form-section {
    padding: 27px 0;

    border-top: 1px solid #eceef2;
}

.form-section:first-of-type {
    padding-top: 0;
    border-top: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 20px;

    color: #1f2937;

    font-size: 16px;
    font-weight: 700;
}

.section-number {
    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    color: #ffffff;

    font-size: 11px;
    font-weight: 800;

    background: linear-gradient(
        135deg,
        #315bea,
        #7047e8
    );
}


/* =========================================================
   FORM GRID
   ========================================================= */

.form-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 19px;
}

.form-field {
    min-width: 0;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    color: #344054;

    font-size: 13px;
    font-weight: 600;
}

.form-field label span {
    color: #98a2b3;
    font-weight: 400;
}


/* =========================================================
   INPUTS / SELECT / TEXTAREA
   ========================================================= */

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    box-sizing: border-box;

    border: 1px solid #dfe3e8;
    border-radius: 10px;

    outline: none;

    background: #ffffff;

    color: #111827;

    font-family: inherit;
    font-size: 14px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-field input,
.form-field select {
    height: 48px;

    padding: 0 14px;
}

.form-field textarea {
    min-height: 125px;

    padding: 13px 14px;

    resize: vertical;

    line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: #a0a8b5;
}

.form-field select {
    cursor: pointer;
}

.form-field select option {
    color: #111827;
    background: #ffffff;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: #5275e9;

    background: #ffffff;

    box-shadow:
        0 0 0 3px rgba(49,91,234,0.09);
}


/* =========================================================
   EMAIL + OTP
   ========================================================= */

.email-otp-row {
    display: flex;
    align-items: stretch;
    gap: 10px;
}

.email-otp-row input {
    flex: 1;
    min-width: 0;
}

.otp-button {
    flex: 0 0 auto;

    min-width: 125px;

    padding: 0 18px;

    border: 1px solid #315bea;
    border-radius: 10px;

    background: #315bea;

    color: #ffffff;

    font-family: inherit;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;

    transition: 0.2s ease;
}

.otp-button:hover {
    background: #264bc7;

    border-color: #264bc7;

    transform: translateY(-1px);
}

.otp-button:disabled {
    opacity: 0.55;
    cursor: not-allowed;
    transform: none;
}


/* OTP AREA */

.otp-field {
    margin-top: 18px;
}

.otp-message {
    min-height: 18px;

    margin-top: 7px;

    color: #667085;

    font-size: 12px;
}

.otp-message.success {
    color: #15803d;
}

.otp-message.error {
    color: #dc2626;
}


/* =========================================================
   SKILLS & INTERESTS
   ========================================================= */

.interest-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}

.interest-option {
    display: flex;
    align-items: center;

    min-height: 46px;

    padding: 0 13px;

    box-sizing: border-box;

    border: 1px solid #e1e5eb;
    border-radius: 9px;

    background: #ffffff;

    cursor: pointer;

    transition: 0.2s ease;
}

.interest-option:hover {
    border-color: #aebcf0;
    background: #f8faff;
}

.interest-option input {
    width: 16px;
    height: 16px;

    margin: 0 10px 0 0;

    accent-color: #315bea;

    cursor: pointer;
}

.interest-option span {
    color: #475467;

    font-size: 13px;
}


/* =========================================================
   CONFIRMATION
   ========================================================= */

.form-confirmation {
    padding-top: 26px;

    border-top: 1px solid #eceef2;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    color: #667085;

    font-size: 12px;
    line-height: 1.6;

    cursor: pointer;
}

.checkbox-row input {
    position: absolute;

    opacity: 0;

    pointer-events: none;
}

.custom-checkbox {
    flex: 0 0 auto;

    width: 18px;
    height: 18px;

    margin-top: 1px;

    border: 1px solid #cdd3dc;
    border-radius: 5px;

    background: #ffffff;

    transition: 0.2s ease;
}

.checkbox-row input:checked + .custom-checkbox {
    border-color: #315bea;

    background: linear-gradient(
        135deg,
        #315bea,
        #7047e8
    );
}

.checkbox-row input:checked + .custom-checkbox::after {
    content: "✓";

    display: flex;
    align-items: center;
    justify-content: center;

    height: 100%;

    color: #ffffff;

    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   SUBMIT BUTTON
   ========================================================= */

.submit-button {
    width: 100%;

    min-height: 52px;

    margin-top: 21px;

    border: none;
    border-radius: 10px;

    background: linear-gradient(
        135deg,
        #315bea,
        #7047e8
    );

    color: #ffffff;

    font-family: inherit;
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;

    box-shadow:
        0 10px 25px rgba(49,91,234,0.20);

    transition: 0.2s ease;
}

.submit-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 14px 30px rgba(49,91,234,0.27);
}

.submit-button:active {
    transform: translateY(0);
}

.privacy-note {
    margin: 12px 0 0;

    color: #98a2b3;

    font-size: 10px;
    line-height: 1.6;

    text-align: center;
}


/* =========================================================
   FOOTER
   ========================================================= */

.registration-footer {
    position: relative;
    z-index: 2;

    width: min(900px, 90%);
    margin: 0 auto;

    padding: 20px 0 28px;

    border-top: 1px solid rgba(17,24,39,0.08);

    color: #98a2b3;

    font-size: 11px;

    text-align: center;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 700px) {

    .registration-main {
        width: 90%;
        padding-top: 52px;
    }

    .registration-card {
        padding: 30px 25px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-field.full-width {
        grid-column: auto;
    }

    .interest-grid {
        grid-template-columns: 1fr;
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 520px) {

    .registration-header {
        padding: 16px 5%;
    }

    .registration-logo-symbol {
        width: 35px;
        height: 35px;

        border-radius: 9px;
    }

    .registration-logo-name {
        font-size: 16px;
    }

    .back-home {
        padding: 8px 11px;

        font-size: 11px;
    }

    .registration-main {
        width: 91%;

        padding: 42px 0 55px;
    }

    .registration-intro {
        margin-bottom: 30px;
    }

    .registration-intro h1 {
        font-size: 38px;

        letter-spacing: -1.5px;
    }

    .registration-intro p {
        font-size: 14px;
    }

    .registration-card {
        padding: 24px 17px;

        border-radius: 18px;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .form-section {
        padding: 23px 0;
    }

    .email-otp-row {
        flex-direction: column;
    }

    .otp-button {
        width: 100%;
        min-height: 46px;
    }

    .form-field input,
    .form-field select {
        height: 46px;
    }

    .submit-button {
        min-height: 50px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 370px) {

    .registration-logo-name {
        display: none;
    }

    .registration-intro h1 {
        font-size: 33px;
    }

    .registration-card {
        padding: 21px 14px;
    }
}



/* =========================================================
   FUTUREVERSE — PREMIUM FORM ALERT
   ========================================================= */

.fv-alert {
    position: fixed;
    top: 24px;
    left: 50%;

    z-index: 99999;

    width: min(430px, calc(100% - 30px));

    transform: translateX(-50%);

    animation: fvAlertIn 0.35s ease forwards;
}

.fv-alert-box {
    position: relative;

    display: flex;
    align-items: flex-start;
    gap: 14px;

    padding: 18px 45px 18px 18px;

    border: 1px solid #e5e7eb;
    border-radius: 16px;

    background: rgba(255,255,255,0.98);

    box-shadow:
        0 20px 55px rgba(15,23,42,0.18);

    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.fv-alert-icon {
    width: 38px;
    height: 38px;

    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff1f2;

    border: 1px solid #fecdd3;

    color: #e11d48;

    font-size: 18px;
    font-weight: 800;
}

.fv-alert-content h3 {
    margin: 1px 0 5px;

    color: #111827;

    font-size: 15px;
    font-weight: 750;
}

.fv-alert-content p {
    margin: 0;

    color: #667085;

    font-size: 12px;
    line-height: 1.55;
}

.fv-alert-close {
    position: absolute;
    top: 10px;
    right: 12px;

    width: 28px;
    height: 28px;

    border: none;
    border-radius: 50%;

    background: transparent;

    color: #98a2b3;

    font-size: 21px;
    line-height: 1;

    cursor: pointer;

    transition: 0.2s ease;
}

.fv-alert-close:hover {
    background: #f2f4f7;
    color: #344054;
}


/* =========================================================
   FIELD ERROR
   ========================================================= */

.form-field input.field-error,
.form-field select.field-error,
.form-field textarea.field-error {
    border-color: #ef4444 !important;

    background: #fff8f8 !important;

    box-shadow:
        0 0 0 3px rgba(239,68,68,0.08) !important;
}

.field-error-message {
    margin-top: 6px;

    color: #dc2626;

    font-size: 11px;
    font-weight: 600;

    animation: fvErrorIn 0.2s ease;
}


/* =========================================================
   CHECKBOX ERROR
   ========================================================= */

.checkbox-error .custom-checkbox {
    border-color: #ef4444;

    box-shadow:
        0 0 0 3px rgba(239,68,68,0.08);
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes fvAlertIn {

    from {
        opacity: 0;
        transform:
            translate(-50%, -18px)
            scale(0.97);
    }

    to {
        opacity: 1;
        transform:
            translate(-50%, 0)
            scale(1);
    }
}

@keyframes fvErrorIn {

    from {
        opacity: 0;
        transform: translateY(-3px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fv-alert.hide {
    animation: fvAlertOut 0.25s ease forwards;
}

@keyframes fvAlertOut {

    from {
        opacity: 1;
        transform:
            translate(-50%, 0)
            scale(1);
    }

    to {
        opacity: 0;
        transform:
            translate(-50%, -10px)
            scale(0.97);
    }
}









/* =========================================================
   FUTUREVERSE — SUCCESS PAGE
   PREMIUM REGISTRATION COMPLETE EXPERIENCE
   ========================================================= */


/* =========================================================
   PAGE
   ========================================================= */

.success-page {
    min-height: 100vh;
    margin: 0;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 50% 20%,
            #eef3ff 0%,
            #ffffff 42%,
            #f7f8fc 100%
        );

    color: #111827;

    font-family:
        Arial,
        Helvetica,
        sans-serif;
}


/* =========================================================
   BACKGROUND
   ========================================================= */

.success-background {
    position: fixed;
    inset: 0;

    z-index: 0;

    pointer-events: none;

    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(49,91,234,0.10),
            transparent 30%
        ),
        radial-gradient(
            circle at 80% 60%,
            rgba(112,71,232,0.09),
            transparent 30%
        );
}


/* =========================================================
   CELEBRATION LAYER
   ========================================================= */

.celebration-layer {
    position: fixed;
    inset: 0;

    z-index: 9999;

    overflow: hidden;

    background:
        rgba(255,255,255,0.94);

    display: flex;
    align-items: center;
    justify-content: center;

    pointer-events: none;

    animation:
        celebrationFadeIn
        0.5s ease forwards;
}


/* =========================================================
   CENTRAL BURST
   ========================================================= */

.celebration-burst {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 20px;
    height: 20px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(92,122,255,0.9),
            rgba(112,71,232,0.2),
            transparent 70%
        );

    transform: translate(-50%, -50%);

    animation:
        burstExpand
        2.4s
        cubic-bezier(.17,.67,.24,1)
        forwards;
}


/* =========================================================
   BALLOONS
   ========================================================= */

.balloon {
    position: absolute;

    bottom: -180px;

    width: 74px;
    height: 92px;

    border-radius:
        50% 50%
        45% 45%
        50% 50%;

    opacity: 0;

    box-shadow:
        inset -10px -13px 20px rgba(0,0,0,0.08),
        inset 8px 8px 15px rgba(255,255,255,0.35);

    animation:
        balloonRise
        5.5s
        cubic-bezier(.2,.75,.35,1)
        forwards;
}


/* Balloon knot */

.balloon::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: -9px;

    transform: translateX(-50%);

    width: 0;
    height: 0;

    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 11px solid #6b7280;
}


/* Balloon string */

.balloon::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 100%;

    width: 1px;
    height: 120px;

    background: rgba(70,78,100,0.25);

    transform: translateX(-50%);
}


/* Balloon positions */

.balloon-1 {
    left: 8%;
    background: #5b7cff;
    animation-delay: .1s;
}

.balloon-2 {
    left: 22%;
    width: 62px;
    height: 78px;

    background: #8b5cf6;

    animation-delay: .7s;
}

.balloon-3 {
    left: 37%;
    width: 67px;
    height: 84px;

    background: #38bdf8;

    animation-delay: .35s;
}

.balloon-4 {
    right: 36%;
    width: 70px;
    height: 87px;

    background: #6366f1;

    animation-delay: .9s;
}

.balloon-5 {
    right: 20%;
    width: 62px;
    height: 78px;

    background: #a855f7;

    animation-delay: .5s;
}

.balloon-6 {
    right: 7%;

    background: #3b82f6;

    animation-delay: 1s;
}


/* =========================================================
   CELEBRATION MESSAGE
   ========================================================= */

.celebration-message {
    position: relative;

    z-index: 10;

    text-align: center;

    opacity: 0;

    transform: translateY(20px) scale(.96);

    animation:
        celebrationMessage
        0.8s
        1.4s
        cubic-bezier(.2,.8,.2,1)
        forwards;
}


.celebration-check {
    width: 72px;
    height: 72px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #315bea,
            #7047e8
        );

    color: white;

    font-size: 31px;
    font-weight: 800;

    box-shadow:
        0 20px 45px rgba(49,91,234,0.25);
}


.celebration-small {
    margin-bottom: 9px;

    color: #315bea;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.celebration-message h2 {
    margin: 0;

    color: #111827;

    font-size: clamp(30px, 5vw, 52px);

    letter-spacing: -1.5px;
}


.celebration-message p {
    margin: 12px 0 0;

    color: #667085;

    font-size: 15px;
}


/* =========================================================
   CONFETTI
   ========================================================= */

.confetti-container {
    position: absolute;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
}


.confetti-piece {
    position: absolute;

    top: -30px;

    width: 9px;
    height: 15px;

    opacity: 0;

    animation:
        confettiFall
        4.5s
        linear
        forwards;
}


.confetti-piece.square {
    border-radius: 2px;
    background: #5275e9;
}


.confetti-piece.circle {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #7047e8;
}


.confetti-piece.strip {
    width: 5px;
    height: 19px;

    border-radius: 3px;

    background: #38a9e8;
}


/* =========================================================
   SUCCESS MAIN
   ========================================================= */

.success-main {
    position: relative;

    z-index: 2;

    min-height: 100vh;

    width: min(760px, 90%);

    margin: 0 auto;

    padding:
        70px
        0
        50px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    box-sizing: border-box;
}


/* =========================================================
   SUCCESS CARD
   ========================================================= */

.success-card {
    width: 100%;

    box-sizing: border-box;

    padding: 42px 46px;

    border:
        1px solid
        rgba(17,24,39,0.08);

    border-radius: 26px;

    background:
        rgba(255,255,255,0.94);

    box-shadow:
        0 30px 90px
        rgba(15,23,42,0.12);

    text-align: center;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    animation:
        cardAppear
        0.8s
        6.1s
        cubic-bezier(.2,.8,.2,1)
        both;
}


/* =========================================================
   BADGE
   ========================================================= */

.success-badge {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 7px 12px;

    border-radius: 30px;

    background: #f0fdf4;

    border: 1px solid #bbf7d0;

    color: #15803d;

    font-size: 11px;
    font-weight: 700;
}


.success-badge-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    border-radius: 50%;

    background: #22c55e;

    color: #ffffff;

    font-size: 10px;
}


/* =========================================================
   SUCCESS ICON
   ========================================================= */

.success-icon {
    position: relative;

    width: 92px;
    height: 92px;

    margin: 27px auto 23px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        linear-gradient(
            135deg,
            #315bea,
            #7047e8
        );

    color: #ffffff;

    font-size: 39px;
    font-weight: 800;

    box-shadow:
        0 18px 42px
        rgba(49,91,234,0.23);
}


.success-icon-glow {
    position: absolute;

    inset: -12px;

    border-radius: 50%;

    border:
        1px solid
        rgba(49,91,234,0.15);

    animation:
        iconPulse
        2.2s
        infinite;
}


/* =========================================================
   CONTENT
   ========================================================= */

.success-kicker {
    margin-bottom: 8px;

    color: #315bea;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 2px;
}


.success-content h1 {
    margin: 0;

    color: #111827;

    font-size: clamp(35px, 6vw, 52px);

    line-height: 1.08;

    letter-spacing: -2px;
}


.success-content h1 span {
    background:
        linear-gradient(
            90deg,
            #315bea,
            #7047e8
        );

    -webkit-background-clip: text;
    background-clip: text;

    color: transparent;
}


.success-description {
    max-width: 590px;

    margin:
        18px
        auto
        0;

    color: #667085;

    font-size: 14px;

    line-height: 1.75;
}


/* =========================================================
   DIVIDER
   ========================================================= */

.success-divider {
    width: 100%;

    height: 1px;

    margin: 29px 0;

    background:
        linear-gradient(
            90deg,
            transparent,
            #e5e7eb,
            transparent
        );
}


/* =========================================================
   FUTURE STATEMENT
   ========================================================= */

.future-statement {
    display: flex;

    align-items: center;

    gap: 15px;

    justify-content: center;
}


.future-line {
    width: 45px;

    height: 1px;

    background: #d8dce5;
}


.future-statement p {
    margin: 0;

    color: #475467;

    font-size: 12px;

    font-weight: 600;

    font-style: italic;
}


/* =========================================================
   NEXT STEPS
   ========================================================= */

.success-next {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 10px;

    margin-top: 30px;
}


.next-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    padding: 16px 10px;

    border:
        1px solid
        #edf0f4;

    border-radius: 12px;

    background: #fafbfc;
}


.next-icon {
    width: 28px;
    height: 28px;

    margin-bottom: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #eef2ff;

    color: #315bea;

    font-size: 9px;
    font-weight: 800;
}


.next-item strong {
    display: block;

    margin-bottom: 4px;

    color: #344054;

    font-size: 11px;
}


.next-item span {
    color: #98a2b3;

    font-size: 9px;

    line-height: 1.45;
}


/* =========================================================
   ACTION
   ========================================================= */

.success-actions {
    margin-top: 30px;
}


.success-home-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 210px;

    min-height: 47px;

    padding: 0 22px;

    box-sizing: border-box;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            #315bea,
            #7047e8
        );

    color: #ffffff;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    box-shadow:
        0 10px 25px
        rgba(49,91,234,0.20);

    transition: 0.2s ease;
}


.success-home-button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(49,91,234,0.27);
}


/* =========================================================
   FOOTER
   ========================================================= */

.success-footer {
    margin: 22px 0 0;

    color: #98a2b3;

    font-size: 10px;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes celebrationFadeIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


@keyframes burstExpand {

    0% {
        width: 20px;
        height: 20px;
        opacity: 0.9;
    }

    60% {
        width: 750px;
        height: 750px;
        opacity: 0.35;
    }

    100% {
        width: 1200px;
        height: 1200px;
        opacity: 0;
    }
}


@keyframes balloonRise {

    0% {
        bottom: -180px;
        opacity: 0;
        transform:
            translateX(0)
            rotate(-8deg);
    }

    10% {
        opacity: 1;
    }

    55% {
        transform:
            translateX(35px)
            rotate(8deg);
    }

    100% {
        bottom: 115%;
        opacity: 0;

        transform:
            translateX(-25px)
            rotate(-10deg);
    }
}


@keyframes confettiFall {

    0% {
        top: -30px;
        opacity: 0;
        transform:
            translateX(0)
            rotate(0deg);
    }

    8% {
        opacity: 1;
    }

    100% {
        top: 110%;
        opacity: 0;

        transform:
            translateX(var(--drift))
            rotate(var(--rotate));
    }
}


@keyframes celebrationMessage {

    0% {
        opacity: 0;

        transform:
            translateY(25px)
            scale(.94);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes cardAppear {

    0% {
        opacity: 0;

        transform:
            translateY(25px)
            scale(.97);
    }

    100% {
        opacity: 1;

        transform:
            translateY(0)
            scale(1);
    }
}


@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);

        opacity: .7;
    }

    50% {
        transform: scale(1.12);

        opacity: .2;
    }
}


/* =========================================================
   CELEBRATION END
   ========================================================= */

.celebration-finished {
    opacity: 0;

    transition:
        opacity
        0.8s
        ease;

    visibility: hidden;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .success-main {
        width: 91%;

        padding:
            35px
            0
            30px;
    }

    .success-card {
        padding: 30px 20px;

        border-radius: 21px;
    }

    .success-content h1 {
        font-size: 37px;
    }

    .success-description {
        font-size: 13px;
    }

    .success-next {
        grid-template-columns: 1fr;

        gap: 8px;
    }

    .next-item {
        flex-direction: row;

        text-align: left;

        gap: 10px;
    }

    .next-icon {
        flex: 0 0 auto;

        margin-bottom: 0;
    }

    .balloon {
        width: 55px;
        height: 70px;
    }

    .future-line {
        width: 25px;
    }

    .future-statement {
        gap: 9px;
    }

    .future-statement p {
        font-size: 10px;
    }
}











/* Email & OTP — same compact height as other fields */

#email,
#otp {
    width: 100% !important;
    height: 48px !important;
    min-height: 48px !important;
    box-sizing: border-box !important;

    padding: 0 16px !important;

    background: #fff !important;
    border: 1px solid #dfe3eb !important;
    border-radius: 12px !important;

    font-family: inherit !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #182033 !important;

    outline: none !important;
}

#email::placeholder,
#otp::placeholder {
    color: #a6adba;
    opacity: 1;
    font-size: 13px;
}


#email:focus,
#otp:focus {
    border-color: #3158e8 !important;
    box-shadow: 0 0 0 3px rgba(49, 88, 232, 0.10) !important;
}

/* OTP */
#otp {
    text-align: center !important;
    font-size: 17px !important;
    font-weight: 600 !important;
    letter-spacing: 3px !important;
}

/* Mobile */
@media (max-width: 600px) {
    #email,
    #otp {
        height: 48px !important;
        min-height: 48px !important;
    }
}











/* =========================================================
   FUTUREVERSE — ALERT SUCCESS / ERROR STATES
   ========================================================= */

/* -------------------------
   ERROR POPUP
------------------------- */

.fv-alert-error .fv-alert-icon {
    background: #fff1f2 !important;
    border: 1px solid #fecdd3 !important;
    color: #e11d48 !important;
}


/* -------------------------
   SUCCESS POPUP
------------------------- */

.fv-alert-success .fv-alert-icon {
    background: #f0fdf4 !important;
    border: 1px solid #bbf7d0 !important;
    color: #16a34a !important;

    animation:
        fvSuccessIconPop
        0.45s
        cubic-bezier(.2,.8,.2,1)
        forwards;
}


/* -------------------------
   SUCCESS CHECK ANIMATION
------------------------- */

@keyframes fvSuccessIconPop {

    0% {
        opacity: 0;
        transform: scale(0.45);
    }

    65% {
        opacity: 1;
        transform: scale(1.15);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}










/* =========================================================
   FUTUREVERSE PREMIUM TEAM LOADING SCREEN
   ========================================================= */

.team-loading-screen {

    position: fixed;
    inset: 0;

    z-index: 999999;

    display: none;

    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(20, 50, 100, 0.55),
            rgba(3, 7, 18, 0.96) 55%,
            #02040a 100%
        );

    opacity: 0;
}


/* ACTIVE */

.team-loading-screen.active {

    display: flex;

    animation:
        loadingScreenIn
        0.6s
        ease
        forwards;
}


/* =========================================================
   CENTER
   ========================================================= */

.loading-center {

    position: relative;

    z-index: 5;

    width: min(90%, 620px);

    text-align: center;

    transform: scale(0.92);

    opacity: 0;

    animation:
        loadingContentIn
        0.9s
        0.25s
        ease
        forwards;
}


/* =========================================================
   FV LOGO
   ========================================================= */

.loading-logo {

    width: 82px;
    height: 82px;

    margin: 0 auto 18px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    font-size: 30px;
    font-weight: 800;

    letter-spacing: -2px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #ffffff,
            #55cfff,
            #6366f1
        );

    box-shadow:
        0 0 25px rgba(60, 180, 255, 0.55),
        0 0 70px rgba(80, 90, 255, 0.25);

    animation:
        logoPulse
        2.2s
        ease-in-out
        infinite;
}


/* =========================================================
   BRAND
   ========================================================= */

.loading-brand {

    font-size: 25px;

    font-weight: 700;

    letter-spacing: 7px;

    color: #ffffff;

    margin-bottom: 38px;
}

.loading-brand span {

    color: #43c9ff;

}


/* =========================================================
   WELCOME
   ========================================================= */

.loading-welcome {

    font-size: 13px;

    letter-spacing: 6px;

    font-weight: 600;

    color: rgba(255,255,255,0.65);

    margin-bottom: 9px;

}


/* =========================================================
   MAIN TITLE
   ========================================================= */

.loading-title {

    font-size: clamp(30px, 6vw, 58px);

    line-height: 1.05;

    font-weight: 800;

    letter-spacing: 3px;

    color: #ffffff;

    text-shadow:
        0 0 20px rgba(80,190,255,0.35),
        0 0 50px rgba(70,100,255,0.20);

}


/* =========================================================
   SUBTITLE
   ========================================================= */

.loading-subtitle {

    margin-top: 17px;

    font-size: 15px;

    letter-spacing: 2px;

    color: rgba(255,255,255,0.60);

}


/* =========================================================
   LOADING BAR
   ========================================================= */

.loading-bar-container {

    width: min(430px, 82%);

    height: 5px;

    margin: 40px auto 12px;

    overflow: hidden;

    border-radius: 999px;

    background:
        rgba(255,255,255,0.12);

    box-shadow:
        inset 0 0 10px rgba(0,0,0,0.4),
        0 0 20px rgba(40,160,255,0.10);
}


.loading-bar {

    width: 0%;

    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #4facfe,
            #00f2fe,
            #7c83ff
        );

    box-shadow:
        0 0 14px rgba(50,190,255,0.8);

    transition:
        width 0.12s linear;
}


/* =========================================================
   STATUS
   ========================================================= */

.loading-status {

    width: min(430px, 82%);

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    font-size: 12px;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.48);
}

#loadingPercent {

    color: rgba(120,210,255,0.85);

    font-weight: 600;
}


/* =========================================================
   ORBIT RINGS
   ========================================================= */

.loading-orbit {

    position: absolute;

    top: 50%;
    left: 50%;

    border-radius: 50%;

    pointer-events: none;

    transform:
        translate(-50%, -50%);

    opacity: 0.35;

    border: 1px solid rgba(70,190,255,0.25);
}


.orbit-one {

    width: 390px;
    height: 390px;

    animation:
        orbitRotate
        13s
        linear
        infinite;
}


.orbit-two {

    width: 590px;
    height: 590px;

    border-color:
        rgba(100,120,255,0.18);

    animation:
        orbitRotateReverse
        19s
        linear
        infinite;
}


.orbit-three {

    width: 790px;
    height: 790px;

    border-color:
        rgba(50,190,255,0.10);

    animation:
        orbitRotate
        28s
        linear
        infinite;
}


/* =========================================================
   ORBIT LIGHT DOTS
   ========================================================= */

.loading-orbit::before,
.loading-orbit::after {

    content: "";

    position: absolute;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #64d9ff;

    box-shadow:
        0 0 12px #64d9ff,
        0 0 30px rgba(80,180,255,0.8);
}


.loading-orbit::before {

    top: -4px;
    left: 50%;
}


.loading-orbit::after {

    bottom: -4px;
    right: 20%;
}


/* =========================================================
   PARTICLES
   ========================================================= */

.loading-particles {

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        radial-gradient(
            circle,
            rgba(120,210,255,0.75) 1px,
            transparent 1.5px
        );

    background-size: 75px 75px;

    opacity: 0.16;

    animation:
        particlesMove
        12s
        linear
        infinite;
}


/* =========================================================
   ANIMATIONS
   ========================================================= */

@keyframes loadingScreenIn {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}


@keyframes loadingContentIn {

    from {

        opacity: 0;

        transform:
            scale(0.92)
            translateY(20px);
    }

    to {

        opacity: 1;

        transform:
            scale(1)
            translateY(0);
    }

}


@keyframes logoPulse {

    0%,
    100% {

        transform: scale(1);

        box-shadow:
            0 0 25px rgba(60,180,255,0.55),
            0 0 70px rgba(80,90,255,0.25);
    }

    50% {

        transform: scale(1.06);

        box-shadow:
            0 0 35px rgba(60,190,255,0.8),
            0 0 100px rgba(80,90,255,0.35);
    }

}


@keyframes orbitRotate {

    from {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

}


@keyframes orbitRotateReverse {

    from {
        transform:
            translate(-50%, -50%)
            rotate(360deg);
    }

    to {
        transform:
            translate(-50%, -50%)
            rotate(0deg);
    }

}


@keyframes particlesMove {

    from {
        transform:
            translate(0,0);
    }

    to {
        transform:
            translate(75px,75px);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 600px) {

    .loading-logo {

        width: 68px;
        height: 68px;

        font-size: 25px;

    }

    .loading-brand {

        font-size: 19px;

        letter-spacing: 5px;

        margin-bottom: 30px;

    }

    .loading-welcome {

        font-size: 10px;

        letter-spacing: 4px;

    }

    .loading-title {

        font-size: 31px;

        letter-spacing: 1px;

    }

    .loading-subtitle {

        font-size: 13px;

    }

    .orbit-one {

        width: 290px;
        height: 290px;

    }

    .orbit-two {

        width: 430px;
        height: 430px;

    }

    .orbit-three {

        width: 580px;
        height: 580px;

    }

}









@media (max-width: 600px) {

    .team-loading-screen {
        display: none;
        width: 100vw;
        height: 100dvh;
        min-height: 100dvh;
    }

    .team-loading-screen.active {
        display: flex !important;
    }

    .loading-center {
        width: 92%;
        max-width: 520px;
    }

    .loading-brand {
        font-size: 18px;
        letter-spacing: 4px;
    }

    .loading-welcome {
        font-size: 10px;
        letter-spacing: 3px;
    }

    .loading-title {
        font-size: 29px;
        line-height: 1.15;
    }

    .loading-subtitle {
        font-size: 12px;
    }

    .loading-bar-container,
    .loading-status {
        width: 82%;
    }

    .orbit-one {
        width: 280px;
        height: 280px;
    }

    .orbit-two {
        width: 420px;
        height: 420px;
    }

    .orbit-three {
        width: 560px;
        height: 560px;
    }
}