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

:root {
    --navy: #06172f;
    --navy2: #0a2852;
    --navy3: #0d3b76;
    --blue: #1677ff;
    --blue2: #2688ff;
    --cyan: #22c8ff;
    --text: #17243a;
    --muted: #7b879b;
    --border: #e3eaf3;
    --white: #fff;
    --green: #13b87a;
    --red: #ef4444;
    --shadow: 0 20px 60px rgba(6, 23, 47, .10);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, sans-serif;
    background: #f4f7fb;
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* =========================================================
BACKGROUND
========================================================= */

.bg-effects {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .15;
    animation: floatBlob 12s ease-in-out infinite;
}

.blob-one {
    width: 360px;
    height: 360px;
    background: #1677ff;
    top: -130px;
    left: -100px;
}

.blob-two {
    width: 420px;
    height: 420px;
    background: #22c8ff;
    right: -160px;
    top: 25%;
    animation-delay: -4s;
}

.blob-three {
    width: 350px;
    height: 350px;
    background: #7357ff;
    left: 30%;
    bottom: -180px;
    animation-delay: -7s;
}

@keyframes floatBlob {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(35px, -25px) scale(1.08);
    }
}

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

.header {
    height: 76px;
    background: rgba(255, 255, 255, .90);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(227, 234, 243, .8);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    width: min(1230px, calc(100% - 40px));
    height: 100%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 21px;
    font-weight: 800;
    color: var(--navy);
    cursor: pointer;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 8px 25px rgba(22, 119, 255, .28);
}

.logo span {
    color: var(--blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-btn {
    border: 1px solid var(--border);
    background: #fff;
    padding: 10px 17px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
    cursor: pointer;
    transition: .25s;
    text-decoration: none;
}

.header-btn:hover {
    transform: translateY(-2px);
    border-color: var(--blue);
    color: var(--blue);
}

.header-btn.primary {
    color: #fff;
    border: none;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
}

/* =========================================================
PAGE SYSTEM
========================================================= */


@keyframes pageIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================================
FIRST PAGE / MAIN MENU
========================================================= */

.menu-hero {
    min-height: 430px;
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(34, 200, 255, .20), transparent 30%),
        radial-gradient(circle at 85% 70%, rgba(22, 119, 255, .22), transparent 32%),
        linear-gradient(120deg, #06172f, #0a2852 50%, #0d3b76);
}

.menu-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
    background-size: 42px 42px;
}

.menu-hero-content {
    width: min(1230px, calc(100% - 40px));
    margin: auto;
    padding: 78px 0 120px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 13px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: #c8eaff;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 12px var(--cyan);
    animation: pulse 1.7s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}

.menu-hero h1 {
    margin-top: 20px;
    font-size: clamp(40px, 5vw, 64px);
    line-height: 1.05;
    letter-spacing: -2.5px;
    max-width: 800px;
}

.gradient-text {
    background: linear-gradient(90deg, #fff, #6edfff, #3e8dff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.menu-hero p {
    margin-top: 20px;
    max-width: 700px;
    color: #bdd0e9;
    font-size: 14px;
    line-height: 1.8;
}

/* =========================================================
PLANE
========================================================= */

.plane-track {
    position: absolute;
    left: -100px;
    right: -100px;
    bottom: 55px;
    height: 80px;
    pointer-events: none;
    z-index: 3;
}

.plane {
    position: absolute;
    left: -80px;
    font-size: 30px;
    filter: drop-shadow(0 0 12px rgba(34, 200, 255, .8));
    animation: flyPlane 10s linear infinite;
}

.plane-trail {
    position: absolute;
    left: 0;
    top: 50%;
    width: 250px;
    height: 2px;
    background: linear-gradient(90deg,
            transparent,
            rgba(34, 200, 255, .8),
            transparent);
    filter: blur(1px);
    animation: trailMove 10s linear infinite;
}

@keyframes flyPlane {
    0% {
        left: -80px;
        transform: translateY(20px) rotate(-3deg);
    }

    40% {
        transform: translateY(-12px) rotate(2deg);
    }

    70% {
        transform: translateY(8px) rotate(-2deg);
    }

    100% {
        left: calc(100% + 80px);
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes trailMove {
    0% {
        left: -250px;
    }

    100% {
        left: 100%;
    }
}

/* =========================================================
MENU CARDS
========================================================= */

.menu-container {
    width: min(1100px, calc(100% - 40px));
    margin: -65px auto 80px;
    position: relative;
    z-index: 10;
}

.menu-card-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.menu-card {
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 27px;
    min-height: 250px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: .35s;
    box-shadow: 0 18px 50px rgba(6, 23, 47, .09);
    text-decoration: none;
}

.menu-card::before {
    content: "";
    position: absolute;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(22, 119, 255, .07);
    right: -55px;
    top: -55px;
    transition: .35s;
}

.menu-card:hover {
    transform: translateY(-9px);
    border-color: #c8dcf4;
    box-shadow: 0 25px 60px rgba(6, 23, 47, .14);
}

.menu-card:hover::before {
    transform: scale(1.5);
}

.menu-icon {
    width: 52px;
    height: 52px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf6ff;
    color: var(--blue);
    font-size: 22px;
    margin-bottom: 20px;
    transition: .3s;
}

.menu-card:hover .menu-icon {
    transform: rotate(-5deg) scale(1.08);
    box-shadow: 0 10px 25px rgba(22, 119, 255, .13);
}

.menu-card h3 {
    color: var(--navy);
    font-size: 16px;
    margin-bottom: 9px;
}

.menu-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.menu-arrow {
    position: absolute;
    right: 23px;
    bottom: 22px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f2f7fd;
    color: var(--blue);
    font-weight: 800;
    transition: .3s;
}

.menu-card:hover .menu-arrow {
    background: var(--blue);
    color: #fff;
    transform: translateX(4px);
}

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

.main-container {
    width: min(1230px, calc(100% - 40px));
    margin: -58px auto 80px;
    position: relative;
    z-index: 5;
}

/* =========================================================
PROGRESS
========================================================= */

.progress-card {
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 25px 30px;
    box-shadow: var(--shadow);
}

.progress-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.progress-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
}

.progress-count {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600;
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
}

.steps-line {
    position: absolute;
    top: 18px;
    left: 8%;
    right: 8%;
    height: 3px;
    background: #e8edf5;
    z-index: 0;
}

.steps-line-active {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transition: .5s;
}

.step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-circle {
    width: 37px;
    height: 37px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #dbe4f0;
    color: #9aa6b8;
    font-size: 12px;
    font-weight: 800;
    transition: .4s;
}

.step.active .step-circle,
.step.done .step-circle {
    color: #fff;
    border-color: var(--blue);
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 7px 20px rgba(22, 119, 255, .25);
}

.step-label {
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    color: #8895a9;
}

.step.active .step-label,
.step.done .step-label {
    color: var(--navy);
}

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

.onboarding-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 25px;
    margin-top: 25px;
}

.card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: 0 15px 45px rgba(6, 23, 47, .07);
}

.form-card {
    padding: 32px;
}

.form-step {
    display: none;
    animation: stepIn .4s ease;
}

.form-step.active {
    display: block;
}

@keyframes stepIn {
    from {
        opacity: 0;
        transform: translateX(15px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 25px 0 20px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--border);
}

.section-header:first-child {
    margin-top: 0;
}

.section-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    color: var(--blue);
    font-size: 14px;
}

.section-header h3 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .7px;
    color: var(--navy);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.full {
    grid-column: 1/-1;
}

label {
    font-size: 11px;
    font-weight: 700;
    color: #536177;
}

label span {
    color: var(--red);
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 11px;
    background: linear-gradient(180deg, #fff, #fbfdff);
    padding: 12px 13px;
    font-family: inherit;
    color: var(--text);
    font-size: 12px;
    outline: none;
    transition: .2s;
}

textarea {
    min-height: 85px;
    resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
    border-color: #c8d8ea;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(22, 119, 255, .08);
    transform: translateY(-1px);
}

.info-box {
    padding: 14px 16px;
    background: #f1f8ff;
    border: 1px solid #dceeff;
    border-radius: 11px;
    color: #55708f;
    font-size: 11px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 10px;
    font-size: 11px;
    line-height: 1.6;
    color: #536177;
}

.checkbox-row input {
    width: 16px;
    height: 16px;
    margin-top: 1px;
    accent-color: var(--blue);
    flex-shrink: 0;
}

.checkbox-row a {
    color: var(--blue);
    font-weight: 700;
    text-decoration: none;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-top: 35px;
    padding-top: 20px;
}

.form-btn {
    border: none;
    padding: 12px 19px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: .25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.form-btn:hover {
    transform: translateY(-2px);
}

.btn-back {
    background: #f2f5f9;
    color: #617086;
}

.btn-next {
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    box-shadow: 0 9px 25px rgba(22, 119, 255, .22);
}

/* =========================================================
SIDE TIMELINE
========================================================= */

.side-card {
    padding: 25px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.side-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 25px;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 11px;
    top: 12px;
    bottom: 15px;
    width: 2px;
    background: #e4eaf3;
}

.timeline-item {
    position: relative;
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #dbe4ef;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-item.active .timeline-dot {
    border-color: var(--blue);
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(22, 119, 255, .10);
}

.timeline-content h4 {
    font-size: 11px;
    color: var(--navy);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 10px;
    color: var(--muted);
    line-height: 1.6;
}

.secure-box {
    margin-top: 10px;
    padding: 14px;
    border-radius: 12px;
    background: #f4fbf8;
    border: 1px solid #dcefe7;
    font-size: 10px;
    color: #557468;
    line-height: 1.6;
}

/* =========================================================
SUCCESS
========================================================= */

.success-screen {
    display: none;
    text-align: center;
    padding: 55px 20px;
}

.success-screen.active {
    display: block;
}

.success-icon {
    width: 78px;
    height: 78px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eafaf4;
    border: 1px solid #c9f0df;
    color: var(--green);
    font-size: 35px;
    animation: successPop .5s ease;
}

@keyframes successPop {
    0% {
        transform: scale(.5);
        opacity: 0;
    }

    70% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-screen h2 {
    font-size: 27px;
    color: var(--navy);
}

.success-screen p {
    max-width: 550px;
    margin: 12px auto;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.application-id {
    display: inline-block;
    margin: 18px 0;
    padding: 11px 18px;
    border-radius: 9px;
    background: #f1f6fd;
    border: 1px solid #dce7f3;
    font-size: 13px;
    font-weight: 800;
    color: var(--blue);
}

/* =========================================================
PUBLIC PAGES
========================================================= */

.public-container {
    width: min(1100px, calc(100% - 40px));
    margin: 60px auto 80px;
}

.public-heading {
    text-align: center;
    margin-bottom: 40px;
}

.public-heading h2 {
    font-size: 35px;
    color: var(--navy);
    margin-bottom: 10px;
}

.public-heading p {
    color: var(--muted);
    font-size: 13px;
}

/* =========================================================
HELP DESK
========================================================= */

.help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.help-page .public-heading {
    max-width: 760px;
    margin: 60px auto 34px;
}

.help-page .public-heading h2 {
    font-size: 38px;
    letter-spacing: -.8px;
}

.help-page .public-heading p {
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

.help-support-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    margin: 0 0 28px;
    overflow: hidden;
    border: 1px solid #dce8f5;
    border-radius: 16px;
    background: #dce8f5;
    box-shadow: 0 12px 30px rgba(6, 23, 47, .05);
}

.help-support-point {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .96);
}

.help-support-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    border-radius: 9px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-size: 11px;
    font-weight: 800;
}

.help-support-point strong {
    display: block;
    color: var(--navy);
    font-size: 11px;
}

.help-support-point span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.4;
}

.help-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    min-height: 222px;
    padding: 22px;
    transition: .3s;
    box-shadow: 0 10px 30px rgba(6, 23, 47, .045);
}

.help-card:hover {
    transform: translateY(-5px);
    border-color: #c9ddf5;
    box-shadow: 0 18px 45px rgba(6, 23, 47, .09);
}

.help-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eef6ff;
    color: var(--blue);
    font-size: 17px;
    margin-bottom: 15px;
    box-shadow: inset 0 0 0 1px rgba(22, 119, 255, .06);
}

.help-card h3 {
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 8px;
}

.help-card p {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.65;
}

.faq {
    margin-top: 54px;
    padding-top: 38px;
    border-top: 1px solid var(--border);
}

.help-page .faq .public-heading {
    margin: 0 auto 22px;
}

.help-page .faq .public-heading h2 {
    font-size: 26px;
    letter-spacing: -.3px;
}

.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 13px;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-question {
    padding: 17px;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    color: var(--navy);
}

.faq-answer {
    display: none;
    padding: 0 17px 17px;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* =========================================================
AUTH
========================================================= */

.auth-wrapper {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.auth-card {
    width: min(430px, 100%);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 25px 70px rgba(6, 23, 47, .10);
}

.auth-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    color: #fff;
    font-weight: 800;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(22, 119, 255, .25);
}

.auth-card h2 {
    text-align: center;
    color: var(--navy);
    font-size: 24px;
}

.auth-subtitle {
    text-align: center;
    color: var(--muted);
    font-size: 11px;
    margin: 8px 0 25px;
}

.auth-form {
    display: grid;
    gap: 16px;
}

.forgot-link {
    text-align: right;
    font-size: 10px;
    color: var(--blue);
    font-weight: 700;
    cursor: pointer;
}

.auth-submit {
    border: none;
    padding: 13px;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--blue), var(--cyan));
    font-weight: 700;
    cursor: pointer;
}

.auth-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 11px;
    color: var(--muted);
}

.auth-bottom span {
    color: var(--blue);
    font-weight: 700;
    cursor: pointer;
}

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

.status-card {
    max-width: 760px;
    margin: auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 35px;
    box-shadow: var(--shadow);
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.status-header h2 {
    color: var(--navy);
    font-size: 20px;
}

.status-badge {
    padding: 7px 12px;
    border-radius: 30px;
    background: #fff8e8;
    color: #b77900;
    font-size: 10px;
    font-weight: 800;
}

.status-id {
    background: #f3f7fc;
    border: 1px solid var(--border);
    padding: 17px;
    border-radius: 12px;
}

.status-id small {
    display: block;
    color: var(--muted);
    font-size: 9px;
    margin-bottom: 5px;
}

.status-id strong {
    color: var(--blue);
    font-size: 14px;
}

.status-progress {
    position: relative;
    margin: 40px 0;
}

.status-progress-line {
    position: absolute;
    top: 18px;
    left: 9%;
    right: 9%;
    height: 3px;
    background: #e5ebf3;
}

.status-progress-active {
    width: 20%;
    height: 100%;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.status-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: relative;
}

.status-step {
    text-align: center;
}

.status-dot {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    margin: auto;
    background: #fff;
    border: 2px solid #dce5ef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #98a5b7;
}

.status-step.active .status-dot {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 0 0 5px rgba(22, 119, 255, .09);
}

.status-step p {
    font-size: 9px;
    margin-top: 8px;
    color: var(--muted);
}

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

footer {
    padding: 30px 20px;
    text-align: center;
    color: var(--muted);
    font-size: 10px;
}

footer strong {
    color: var(--navy);
}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:900px) {

    .help-support-strip {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .menu-card-wrapper {
        grid-template-columns: 1fr;
    }

    .onboarding-grid {
        grid-template-columns: 1fr;
    }

    .side-card {
        position: static;
    }

    .help-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:650px) {

    .header {
        height: 68px;
    }

    .header-inner {
        width: calc(100% - 25px);
    }

    .logo {
        font-size: 18px;
    }

    .logo-icon {
        width: 36px;
        height: 36px;
    }

    .header-btn {
        padding: 8px 10px;
        font-size: 10px;
    }

    .header-btn.primary {
        display: none;
    }

    .menu-hero-content {
        width: calc(100% - 30px);
        padding: 55px 0 100px;
    }

    .menu-hero h1 {
        font-size: 39px;
        letter-spacing: -1.7px;
    }

    .menu-hero p {
        font-size: 12px;
    }

    .menu-container {
        width: calc(100% - 20px);
        margin: -45px auto 60px;
    }

    .menu-card {
        min-height: 220px;
    }

    .main-container {
        width: calc(100% - 20px);
        margin-top: -45px;
    }

    .progress-card {
        padding: 18px 12px;
    }

    .step-label {
        font-size: 8px;
    }

    .form-card {
        padding: 20px 15px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .full {
        grid-column: auto;
    }

    .public-container {
        width: calc(100% - 25px);
        margin-top: 35px;
    }

    .public-heading h2 {
        font-size: 28px;
    }

    .auth-card {
        padding: 25px 20px;
    }

    .status-card {
        padding: 22px 15px;
    }

    .status-step p {
        font-size: 7px;
    }
}
.brand-name {
white-space: nowrap;
}

.brand-name span {
    color: var(--cyan);
}

.readonly-field {
    background: #f3f6fa !important;
    color: #6b778c !important;
    cursor: not-allowed;
    opacity: 0.85;
}


/* show field errors */
.field-error {
    display: block;
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
}