
/* ============================================================
   CTM PATH™ MILLIONAIRES™
   INDEX PAGE
   ============================================================ */


/* ============================================================
   RESET
   ============================================================ */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {

    min-height: 100vh;

    font-family:
        Arial,
        "Noto Sans Tamil",
        sans-serif;

    color: #f5f1e8;

    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(26, 55, 95, 0.30),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            #050817 0%,
            #080b1d 50%,
            #11102b 100%
        );

}


/* ============================================================
   BRAND HEADER
   ============================================================ */

.site-header {

    position: fixed;

    top: 0;
    left: 0;

    width: 100%;
    height: 92px;

    display: flex;

    align-items: center;

    padding: 12px 24px;

    z-index: 1000;

    background:
        linear-gradient(
            to bottom,
            rgba(5, 8, 23, 0.97),
            rgba(5, 8, 23, 0.78),
            transparent
        );

}


.brand-logo {

    display: inline-flex;

    align-items: center;

    text-decoration: none;

}


.brand-logo img {

    display: block;

    width: 190px;

    height: auto;

    max-height: 70px;

    object-fit: contain;

}


/* ============================================================
   MAIN
   ============================================================ */

.welcome-page {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    padding:

        120px
        20px
        50px;

}


/* ============================================================
   CARD
   ============================================================ */

.welcome-card {

    width: 100%;

    max-width: 900px;

    padding: 55px 70px 45px;

    border:

        1px solid
        rgba(202, 153, 39, 0.45);

    border-radius: 28px;

    background:

        linear-gradient(
            145deg,
            rgba(12, 16, 40, 0.97),
            rgba(8, 10, 29, 0.96)
        );

    box-shadow:

        0 30px 80px
        rgba(0, 0, 0, 0.45);

}


/* ============================================================
   JOURNEY INDICATOR
   ============================================================ */

.journey-indicator {

    display: flex;

    justify-content: center;

    margin-bottom: 35px;

}


.journey-indicator span {

    padding: 9px 24px;

    border:

        1px solid
        #c9982e;

    border-radius: 30px;

    color: #f6c94f;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 3px;

}


/* ============================================================
   WELCOME CONTENT
   ============================================================ */

.welcome-content {

    text-align: center;

}


.eyebrow-tamil {

    margin-bottom: 18px;

    color: #008f87;

    font-size: 22px;

    font-weight: 700;

}


.welcome-content h1 {

    font-family:
        Georgia,
        "Times New Roman",
        serif;

    font-size: clamp(
        48px,
        8vw,
        86px
    );

    line-height: 0.95;

    letter-spacing: 2px;

    color: #f6c94f;

    text-shadow:

        0 4px 18px
        rgba(246, 201, 79, 0.18);

}


.welcome-content h1 span {

    color: #f6c94f;

}


.tamil-title {

    margin-top: 28px;

    color: #008f87;

    font-size: clamp(
        22px,
        3vw,
        34px
    );

    line-height: 1.4;

}


.english-title {

    margin-top: 18px;

    font-size: 17px;

    letter-spacing: 2px;

    color: #f5f1e8;

}


.english-title strong {

    color: #f6c94f;

}


.tamil-message {

    margin-top: 30px;

    font-size: 23px;

    font-weight: 600;

    color: #f5f1e8;

}


.english-message {

    margin-top: 10px;

    color: #d7d3cb;

    font-size: 14px;

    letter-spacing: 2px;

}


.welcome-divider {

    width: 100px;

    height: 2px;

    margin: 30px auto;

    background: #c9982e;

}


.intro-text {

    max-width: 680px;

    margin:

        10px auto;

    color: #c9c6be;

    font-size: 16px;

    line-height: 1.8;

}


.tamil-text {

    font-size: 17px;

}


/* ============================================================
   KYC
   ============================================================ */

.kyc-section {

    margin-top: 50px;

    padding-top: 40px;

    border-top:

        1px solid
        rgba(255,255,255,0.08);

}


.section-heading {

    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 30px;

}


.section-number {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    border:

        1px solid
        #c9982e;

    border-radius: 50%;

    color: #f6c94f;

    font-size: 14px;

    font-weight: 700;

}


.section-heading h3 {

    color: #f5f1e8;

    font-size: 20px;

    line-height: 1.4;

}


.section-heading p {

    margin-top: 4px;

    color: #8d918f;

    font-size: 11px;

    letter-spacing: 2px;

}


/* ============================================================
   FORM
   ============================================================ */

#kycForm {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 22px;

}


.form-group {

    display: flex;

    flex-direction: column;

}


.form-group label {

    margin-bottom: 8px;

    color: #e8e4db;

    font-size: 14px;

    font-weight: 600;

}


.form-group label span {

    color: #858a88;

    font-size: 11px;

    font-weight: 400;

}


.form-group input {

    width: 100%;

    padding: 15px 16px;

    border:

        1px solid
        rgba(255,255,255,0.13);

    border-radius: 10px;

    outline: none;

    background:

        rgba(255,255,255,0.045);

    color: #ffffff;

    font-size: 15px;

    transition:

        border-color 0.2s ease,
        background 0.2s ease;

}


.form-group input::placeholder {

    color: #777d7b;

}


.form-group input:focus {

    border-color: #c9982e;

    background:

        rgba(255,255,255,0.07);

}


.field-error {

    min-height: 16px;

    margin-top: 5px;

    color: #e88d8d;

    font-size: 11px;

}


/* ============================================================
   CONSENT
   ============================================================ */

.consent-row {

    grid-column: 1 / -1;

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 5px;

    color: #aeb2b0;

    font-size: 12px;

    line-height: 1.7;

    cursor: pointer;

}


.consent-row input {

    width: 17px;
    height: 17px;

    margin-top: 2px;

    accent-color: #c9982e;

}


/* ============================================================
   STATUS
   ============================================================ */

.form-status {

    grid-column: 1 / -1;

    min-height: 24px;

    text-align: center;

    font-size: 13px;

}


.form-status.error {

    color: #e88d8d;

}


.form-status.success {

    color: #55c7ad;

}


/* ============================================================
   BEGIN BUTTON
   ============================================================ */

.begin-button {

    grid-column: 1 / -1;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 4px;

    width: 100%;

    margin-top: 8px;

    padding: 17px 25px;

    border: none;

    border-radius: 12px;

    cursor: pointer;

    background:

        linear-gradient(
            135deg,
            #c9982e,
            #f6c94f
        );

    color: #080b18;

    font-weight: 800;

    box-shadow:

        0 12px 30px
        rgba(201, 152, 46, 0.22);

    transition:

        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.begin-button:hover {

    transform: translateY(-2px);

    box-shadow:

        0 16px 36px
        rgba(201, 152, 46, 0.32);

}


.begin-button:disabled {

    opacity: 0.6;

    cursor: wait;

    transform: none;

}


.button-tamil {

    font-size: 15px;

}


.button-english {

    font-size: 11px;

    letter-spacing: 2px;

}


/* ============================================================
   FOOTER
   ============================================================ */

.welcome-footer {

    margin-top: 45px;

    padding-top: 25px;

    border-top:

        1px solid
        rgba(255,255,255,0.07);

    text-align: center;

}


.welcome-footer p {

    color: #f6c94f;

    font-size: 11px;

    letter-spacing: 3px;

}


.welcome-footer span {

    display: block;

    margin-top: 8px;

    color: #777d7b;

    font-size: 10px;

    letter-spacing: 1.5px;

}


/* ============================================================
   MOBILE
   ============================================================ */

@media (max-width: 700px) {

    .site-header {

        height: 72px;

        padding: 8px 14px;

    }


    .brand-logo img {

        width: 145px;

        max-height: 55px;

    }


    .welcome-page {

        padding:

            90px
            12px
            30px;

    }


    .welcome-card {

        padding:

            35px
            20px
            30px;

        border-radius: 20px;

    }


    #kycForm {

        grid-template-columns: 1fr;

    }


    .consent-row,
    .form-status,
    .begin-button {

        grid-column: 1;

    }


    .welcome-content h1 {

        font-size: 48px;

    }


    .tamil-title {

        font-size: 21px;

    }


    .tamil-message {

        font-size: 19px;

    }


    .intro-text {

        font-size: 14px;

    }

}


/* ============================================================
   SMALL MOBILE
   ============================================================ */

@media (max-width: 420px) {

    .welcome-content h1 {

        font-size: 40px;

    }


    .section-heading h3 {

        font-size: 17px;

    }


    .button-tamil {

        font-size: 13px;

    }

}

