/* HERO */
.hero {
    position: relative;
    z-index: 1;
    padding: 68px 28px 84px;
    text-align: center;
    background:
        radial-gradient(ellipse 75% 65% at 50% 0%, rgba(18, 73, 164, .28) 0%, transparent 65%),
        radial-gradient(ellipse 40% 40% at 15% 90%, rgba(0, 194, 255, .07) 0%, transparent 55%),
        radial-gradient(ellipse 30% 30% at 85% 55%, rgba(0, 212, 170, .06) 0%, transparent 55%);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 0.71rem;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
    background: var(--glass-2);
    border: 1px solid var(--glass-border-2);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: var(--r-full);
    margin-bottom: 22px;
    backdrop-filter: blur(12px);
}

.pill .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blink 1.6s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    letter-spacing: -.025em;
    line-height: 1.08;
    color: var(--text-white);
    margin-bottom: 18px;
}

.grad-cyan {
    background: linear-gradient(135deg, #00c2ff, #00d4aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto;
}

.glow-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 194, 255, .45) 30%, rgba(0, 212, 170, .45) 70%, transparent);
    position: relative;
    z-index: 1;
}
.sbar{
    max-width: 1400px;
    margin: 0 auto;
}
/* FORM CARD */
.fc {
    background: rgba(5, 15, 30, .82);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-2xl);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow-card);
    margin-bottom: 20px;
    overflow: hidden;
    transition: border-color .3s var(--ease);
    animation: up .55s var(--spring) both;
    max-width: 1400px;
    margin: 0 auto;
}


.fc:nth-child(1) {
    animation-delay: .04s
}

.fc:nth-child(2) {
    animation-delay: .10s
}

.fc:nth-child(3) {
    animation-delay: .16s
}

.fc:nth-child(4) {
    animation-delay: .22s
}

.fc:nth-child(5) {
    animation-delay: .28s
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(26px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.fc:hover {
    border-color: rgba(0, 194, 255, .18);
}

/* Card head */
.ch {
    padding: 26px 32px 20px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(18, 73, 164, .12), rgba(0, 194, 255, .04));
}

.ch-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    flex-shrink: 0;
    background: var(--cyan-dim);
    border: 1px solid rgba(0, 194, 255, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    box-shadow: 0 0 20px rgba(0, 194, 255, .1);
}

.ch-text h2 {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -.01em;
}

.ch-text p {
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-top: 3px;
}

/* Card body */
.cb {
    padding: 30px 32px;
}

/* Section divider */
.sdiv {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 26px 0 16px;
}

.sdiv:first-child {
    margin-top: 0;
}

.sdiv s-label {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--cyan);
    white-space: nowrap;
}

.sdiv .sl {
    flex: 1;
    height: 1px;
    background: var(--glass-border);
}

/* Profile */
.prow {
    display: flex;
    align-items: center;
    gap: 22px;
}

.pav {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--glass-border-2);
    background: var(--glass-2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 0 24px rgba(0, 194, 255, .13);
    transition: border-color .3s var(--ease);
}

.pav:hover {
    border-color: var(--cyan);
}

.pav img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.pav-icon {
    font-size: 2rem;
    color: var(--text-dim);
}

.pinfo {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pup-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    background: linear-gradient(135deg, #1e6aff, #0a4dd4);
    color: white;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 10px 20px;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all .25s var(--ease);
    box-shadow: var(--glow-blue), inset 0 1px 0 rgba(255, 255, 255, .1);
}

.pup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(30, 106, 255, .5);
}

.pup-btn input {
    display: none;
}

.phint {
    font-size: .72rem;
    color: var(--text-dim);
}

/* Grid */
.fg {
    display: grid;
    gap: 15px;
}

.g4 {
    grid-template-columns: repeat(4, 1fr);
}

.g3 {
    grid-template-columns: repeat(3, 1fr);
}

.g2 {
    grid-template-columns: repeat(2, 1fr);
}

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

.s2 {
    grid-column: span 2;
}

.s3 {
    grid-column: span 3;
}

.s4 {
    grid-column: span 4;
}

/* Field */
.f {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.f label {
    font-size: .72rem;
    font-weight: 800;
    color: var(--text-mid);
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.req {
    color: var(--cyan);
}

.f input,
.f select,
.f textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--glass-border);
    border-radius: var(--r);
    background: rgba(255, 255, 255, .04);
    color: var(--text-bright);
    font-size: .875rem;
    font-weight: 500;
    font-family: var(--font);
    outline: none;
    transition: all .2s var(--ease);
    -webkit-appearance: none;
    appearance: none;
}

.f input::placeholder,
.f textarea::placeholder {
    color: var(--text-dimmer);
    font-weight: 400;
}

.f input:focus,
.f select:focus,
.f textarea:focus {
    border-color: rgba(0, 194, 255, .55);
    background: rgba(0, 194, 255, .05);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, .09);
    color: var(--text-white);
}

.f select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='rgba(240,246,255,0.38)' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 34px;
    cursor: pointer;
}

.f select option {
    background: #0a1f3a;
    color: var(--text-bright);
}

.f textarea {
    resize: vertical;
    min-height: 80px;
}

/* Tabs */
.tab-label {
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--text-dim);
    margin-bottom: 10px;
}

.tabs {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.tab {
    padding: 9px 20px;
    border: 1.5px solid var(--glass-border);
    background: var(--glass);
    color: var(--text-mid);
    font-size: .82rem;
    font-weight: 700;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all .22s var(--ease);
}

.tab:hover {
    border-color: rgba(0, 194, 255, .3);
    color: var(--cyan);
    background: var(--cyan-dim);
}

.tab.on {
    background: linear-gradient(135deg, #1e6aff, #0a4dd4);
    color: white;
    border-color: transparent;
    box-shadow: var(--glow-blue), inset 0 1px 0 rgba(255, 255, 255, .1);
}

/* Panels */
.panel {
    display: none;
}

.panel.on {
    display: block;
    animation: up .3s var(--spring);
}

/* Radio */
.radio-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.ropt {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ropt input[type=radio] {
    display: none;
}

.rdisc {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    border: 2px solid var(--glass-border-2);
    background: var(--glass-2);
    transition: all .2s var(--ease);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ropt input:checked~.rdisc {
    border-color: var(--cyan);
    background: rgba(0, 194, 255, .15);
    box-shadow: 0 0 0 3px rgba(0, 194, 255, .1);
}

.ropt input:checked~.rdisc::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--cyan);
}

.ropt span {
    font-size: .85rem;
    font-weight: 600;
    color: var(--text-mid);
}

/* Doc upload */
.dzone {
    border: 2px dashed rgba(0, 194, 255, .2);
    border-radius: var(--r-xl);
    padding: 40px 24px;
    text-align: center;
    background: var(--cyan-dim2);
    cursor: pointer;
    transition: all .3s var(--ease);
}

.dzone:hover,
.dzone.drag-over {
    border-color: rgba(0, 194, 255, .5);
    background: var(--cyan-dim);
    box-shadow: 0 0 40px rgba(0, 194, 255, .07);
}

.dzone-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
}

.dzone h4 {
    font-size: .95rem;
    font-weight: 800;
    color: var(--text-bright);
    margin-bottom: 6px;
}

.dzone p {
    font-size: .78rem;
    color: var(--text-dim);
    margin-bottom: 16px;
}

.dpick {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--glass-2);
    border: 1px solid var(--glass-border-2);
    color: var(--cyan);
    font-size: .8rem;
    font-weight: 700;
    padding: 9px 20px;
    border-radius: var(--r-full);
    cursor: pointer;
    transition: all .22s var(--ease);
}

.dpick:hover {
    background: var(--cyan-dim);
}

.dpick input {
    display: none;
}

.dlimit {
    font-size: .72rem;
    color: var(--text-dim);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.dlist {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ditem {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--r);
    padding: 11px 14px;
    animation: up .3s var(--spring);
}

.ditem-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
}

.ditem-name {
    flex: 1;
    font-size: .82rem;
    font-weight: 600;
    color: var(--text-mid);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ditem-sz {
    font-size: .72rem;
    color: var(--text-dim);
    flex-shrink: 0;
}

.ditem-rm {
    background: none;
    border: none;
    color: var(--red);
    cursor: pointer;
    font-size: .9rem;
    padding: 3px 6px;
    border-radius: 5px;
    transition: background .15s;
    flex-shrink: 0;
}

.ditem-rm:hover {
    background: var(--red-dim);
}

/* Submit bar */
.sbar {
    background: rgba(5, 15, 30, .82);
    border: 1px solid var(--glass-border);
    border-radius: var(--r-2xl);
    backdrop-filter: blur(26px);
    box-shadow: var(--shadow-card);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    animation: up .55s var(--spring) .3s both;
}

.sbar-note {
    font-size: .78rem;
    color: var(--text-dim);
    max-width: 420px;
    line-height: 1.7;
}

.sbar-note a {
    color: var(--cyan);
    font-weight: 600;
}

.sbar-btns {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.btn-sub {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1e6aff, #0a4dd4);
    color: white;
    font-size: .9rem;
    font-weight: 800;
    padding: 14px 30px;
    border-radius: var(--r-full);
    border: none;
    box-shadow: var(--glow-blue), inset 0 1px 0 rgba(255, 255, 255, .12);
    transition: all .25s var(--ease);
    cursor: pointer;
    letter-spacing: .01em;
    white-space: nowrap;
}

.btn-sub:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(30, 106, 255, .55), 0 0 100px rgba(30, 106, 255, .2);
}

.btn-sub:active {
    transform: translateY(0);
}

.btn-rst {
    padding: 13px 20px;
    border-radius: var(--r-full);
    border: 1px solid var(--glass-border);
    background: var(--glass);
    color: var(--text-mid);
    font-size: .85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all .2s var(--ease);
    white-space: nowrap;
}

.btn-rst:hover {
    border-color: rgba(0, 194, 255, .3);
    color: var(--cyan);
}

/* Toast */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9999;
    padding: 13px 20px;
    border-radius: var(--r-lg);
    font-size: .85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    transform: translateY(70px) scale(.95);
    opacity: 0;
    transition: all .4s var(--spring);
    border: 1px solid var(--glass-border-2);
    backdrop-filter: blur(16px);
    pointer-events: none;
}

.toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.toast.ok {
    background: rgba(0, 212, 170, .14);
    color: var(--teal);
    border-color: rgba(0, 212, 170, .35);
}

.toast.er {
    background: rgba(248, 113, 113, .12);
    color: var(--red);
    border-color: rgba(248, 113, 113, .28);
}

/* Footer */
footer {
    text-align: center;
    padding: 24px;
    position: relative;
    z-index: 1;
    font-size: .75rem;
    color: var(--text-dim);
}

footer a {
    color: var(--cyan);
    font-weight: 600;
}

footer a:hover {
    opacity: .75;
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:960px) {
    .g4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .g3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .s4,
    .s3 {
        grid-column: span 2;
    }
}

@media(max-width:700px) {
    .hero {
        padding: 48px 20px 60px;
    }

    .ch {
        padding: 20px 20px 16px;
    }

    .cb {
        padding: 22px 20px;
    }

    .body {
        padding: 24px 16px 64px;
    }

    .sbar {
        padding: 24px 20px;
    }

    .g4,
    .g3,
    .g2 {
        grid-template-columns: 1fr;
    }

    .s2,
    .s3,
    .s4 {
        grid-column: span 1;
    }

    .sbar {
        flex-direction: column;
        align-items: stretch;
    }

    .sbar-btns {
        flex-direction: column;
    }

    .btn-sub,
    .btn-rst {
        width: 100%;
        justify-content: center;
    }

    .prow {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-in {
        padding: 0 16px;
    }
}

@media(max-width:480px) {
    .hero h1 {
        font-size: 1.75rem;
    }

    .radio-row {
        flex-direction: column;
        gap: 12px;
    }

    .sbar-note {
        max-width: 100%;
    }
}