/* ============================================================
   logon-hero.css
   ============================================================ */

body.logon-body {
    padding-top: 0;
    padding-bottom: 0;
    background: #f5f5f4;
    min-height: 100vh;
}

    body.logon-body::before {
        content: '';
        position: fixed;
        inset: 0;
        background-image: linear-gradient(rgba(0,0,0,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,.05) 1px, transparent 1px);
        background-size: 52px 52px;
        pointer-events: none;
        z-index: 0;
    }

/* ============================================================
   NAVBAR
   ============================================================ */
.ln-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(245,245,244,.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 48px;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,.07);
}

.ln-nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.ln-logo {
    width: 36px;
    height: 36px;
    background: #0a0a0a;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ln-logo i {
        font-size: 18px;
        color: #fff;
    }

.ln-brand-name {
    font-family: 'Syne', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.25;
}

.ln-brand-sub {
    font-size: 11px;
    color: #888896;
    line-height: 1.25;
}

.ln-nav-links {
    display: flex;
    gap: 2px;
}

    .ln-nav-links a {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #52525e;
        font-size: 13px;
        font-weight: 500;
        padding: 7px 14px;
        border-radius: 8px;
        text-decoration: none;
        transition: all .15s;
    }

        .ln-nav-links a:hover {
            color: #0a0a0a;
            background: rgba(0,0,0,.06);
            opacity: 1;
        }

        .ln-nav-links a i {
            font-size: 15px;
        }

/* ============================================================
   MAIN SPLIT
   ============================================================ */
.ln-main {
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding-top: 35px;
    position: relative;
    z-index: 1;
}

.ln-main-inner {
    display: grid;
    grid-template-columns: 1fr 400px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    align-items: center;
    min-height: calc(100vh - 64px);
}

/* ── LEFT ── */
.ln-left {
    padding: 72px 48px 72px 28px;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

/* Badge */
.ln-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 20px;
    padding: 6px 16px 6px 12px;
    font-size: 12px;
    color: #52525e;
    width: fit-content;
    box-shadow: 0 1px 3px rgba(0,0,0,.05);
    letter-spacing: .01em;
}

    .ln-badge i {
        font-size: 14px;
        color: #a0a0ab;
    }

/* Identity block */
.ln-identity {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Headline */
.ln-headline {
    font-family: 'DM Sans', sans-serif;
    font-size: 62px;
    font-weight: 650;
    color: #0a0a0a;
    line-height: 1.0;
    letter-spacing: -.03em;
    margin: 0;
}

.ln-headline-inst {
    color: #0a0a0a;
}

/* Tagline */
.ln-tagline {
    font-size: 15.5px;
    color: #52525e;
    line-height: 1.8;
    max-width: 440px;
    font-weight: 400;
    margin: 0;
}

/* ── Steps Container ── */
.ln-steps {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    width: 100%;
    box-sizing: border-box;
}

.ln-step {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 140px;
}

.ln-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.ln-step-info strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
    line-height: 1.3;
    margin-bottom: 2px;
}

.ln-step-info span {
    font-size: 11px;
    color: #888896;
    line-height: 1.3;
    white-space: normal;
    word-break: keep-all;
}

.ln-step-arrow {
    color: #d1d1d6;
    font-size: 18px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    margin: 0 4px;
}

/* ── Requirements card ── */
.ln-reqs {
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 14px;
    padding: 20px 22px;
    width: 100%;
    max-width: 100%;
    box-shadow: 0 1px 4px rgba(0,0,0,.04);
    box-sizing: border-box;
}

.ln-reqs-title {
    font-size: 11px;
    font-weight: 700;
    color: #a0a0ab;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

    .ln-reqs-title i {
        font-size: 14px;
    }

.ln-reqs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.ln-req-item {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    font-weight: 500;
    color: #27272e;
    line-height: 1.4;
}

    .ln-req-item i {
        font-size: 17px;
        color: #a0a0ab;
        flex-shrink: 0;
        margin-top: 1px;
    }

    .ln-req-item em {
        display: block;
        font-style: normal;
        font-size: 11px;
        color: #a0a0ab;
        margin-top: 1px;
    }

/* Note */
.ln-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    max-width: 480px;
}

    .ln-note i {
        font-size: 16px;
        color: #a0a0ab;
        flex-shrink: 0;
        margin-top: 2px;
    }

    .ln-note p {
        font-size: 12.5px;
        color: #888896;
        line-height: 1.75;
        margin: 0;
    }

/* ── RIGHT ── */
.ln-right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 48px 32px 48px 20px;
    position: relative;
    z-index: 1;
}

/* Login card */
.ln-login-card {
    width: 100%;
    max-width: 360px;
    background: #fff;
    border: 1px solid #e4e4e7;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 32px 72px rgba(0,0,0,.13), 0 8px 24px rgba(0,0,0,.07), 0 1px 3px rgba(0,0,0,.04);
}

.ln-card-head {
    background: #0a0a0a;
    padding: 24px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ln-card-icon {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .ln-card-icon i {
        font-size: 21px;
        color: rgba(255,255,255,.9);
    }

.ln-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 3px;
}

.ln-card-sub {
    font-size: 11.5px;
    color: rgba(255,255,255,.4);
}

.ln-card-body {
    padding: 26px 26px 20px;
}

/* Form fields */
.ln-val-error {
    background: #fff5f5;
    border: 1px solid #fca5a5;
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 12.5px;
    color: #dc2626;
    margin-bottom: 18px;
}

.ln-field {
    margin-bottom: 20px;
}

    .ln-field label {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 11px;
        font-weight: 700;
        color: #52525e;
        text-transform: uppercase;
        letter-spacing: .08em;
        margin-bottom: 8px;
    }

        .ln-field label i {
            font-size: 13px;
            color: #a0a0ab;
        }

.ln-input {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid #e4e4e7;
    border-radius: 9px;
    font-size: 14px;
    color: #0a0a0a;
    background: #fafafa;
    outline: none;
    font-family: 'DM Sans', sans-serif;
    transition: border-color .15s, box-shadow .15s, background .15s;
    box-sizing: border-box;
}

    .ln-input:focus {
        border-color: #0a0a0a;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(0,0,0,.07);
    }

.ln-field-error {
    display: block;
    font-size: 11px;
    color: #dc2626;
    margin-top: 5px;
}

.ln-submit {
    width: 100%;
    padding: 14px 20px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: 'Syne', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background .15s, transform .1s, box-shadow .15s;
    margin-top: 6px;
    letter-spacing: .02em;
    box-sizing: border-box;
}

    .ln-submit i {
        font-size: 17px;
    }

    .ln-submit:hover {
        background: #1a1a1a;
        box-shadow: 0 4px 14px rgba(0,0,0,.18);
    }

    .ln-submit:active {
        transform: scale(.99);
    }

/* Card footer */
.ln-card-foot {
    padding: 16px 26px 20px;
    border-top: 1px solid #f0f0f1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #fafafa;
}

.ln-support-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

    .ln-support-row > i {
        font-size: 17px;
        color: #a0a0ab;
        margin-top: 1px;
        flex-shrink: 0;
    }

    .ln-support-row strong {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: #0a0a0a;
        margin-bottom: 2px;
    }

    .ln-support-row span {
        font-size: 12px;
        color: #888896;
    }

    .ln-support-row a {
        color: #0a0a0a;
        text-decoration: underline;
        font-size: 12px;
    }

.ln-secure {
    font-size: 11.5px;
    color: #a0a0ab;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .ln-secure i {
        font-size: 14px;
    }

/* ============================================================
   INSTRUCTIONS MODAL
   ============================================================ */
.ln-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .52);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.ln-instr-modal {
    background: #fff;
    border-radius: 20px;
    width: 100%;
    max-width: 520px;
    overflow: hidden;
    box-shadow: 0 32px 72px rgba(0,0,0,.22), 0 8px 24px rgba(0,0,0,.1);
}

.ln-instr-modal-head {
    background: #0a0a0a;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.ln-instr-modal-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.ln-instr-modal-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.ln-instr-modal-sub {
    font-size: 12px;
    color: rgba(255,255,255,.42);
}

.ln-instr-modal-scroll {
    max-height: 340px;
    overflow-y: auto;
    padding: 18px 20px 6px;
    scrollbar-width: thin;
    scrollbar-color: #d1d1d6 transparent;
}

    .ln-instr-modal-scroll::-webkit-scrollbar {
        width: 4px;
    }

    .ln-instr-modal-scroll::-webkit-scrollbar-thumb {
        background: #d1d1d6;
        border-radius: 4px;
    }

.ln-instr-modal-item {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #f0f0f1;
    background: #fafafa;
    margin-bottom: 8px;
}

.ln-instr-modal-item-icon {
    width: 34px;
    height: 34px;
    background: #0a0a0a;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: #fff;
    flex-shrink: 0;
}

.ln-instr-modal-item strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #0a0a0a;
    margin-bottom: 3px;
}

.ln-instr-modal-item p {
    font-size: 12.5px;
    color: #52525e;
    line-height: 1.65;
    margin: 0;
}

.ln-instr-modal-foot {
    padding: 12px 20px 20px;
    border-top: 1px solid #f0f0f1;
    background: #fafafa;
}

.ln-instr-scroll-hint {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    color: #a0a0ab;
    margin-bottom: 12px;
    transition: opacity .3s;
}

    .ln-instr-scroll-hint i {
        font-size: 15px;
    }

.ln-instr-modal-actions {
    display: flex;
    gap: 10px;
}

.ln-instr-skip {
    padding: 11px 18px;
    border: 1.5px solid #e4e4e7;
    border-radius: 9px;
    background: #fff;
    color: #52525e;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: background .15s;
}

    .ln-instr-skip:hover {
        background: #f5f5f4;
    }

.ln-instr-confirm {
    flex: 1;
    padding: 11px 18px;
    background: #0a0a0a;
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: 'Syne', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    letter-spacing: .02em;
    transition: background .15s;
}

    .ln-instr-confirm i {
        font-size: 16px;
    }

    .ln-instr-confirm:hover {
        background: #1a1a1a;
    }

/* View Instructions button */
.ln-show-instr-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 18px;
    border: 1.5px solid #e4e4e7;
    border-radius: 9px;
    background: #fff;
    color: #52525e;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    width: fit-content;
}

    .ln-show-instr-btn i {
        font-size: 16px;
        color: #a0a0ab;
    }

    .ln-show-instr-btn:hover {
        background: #f5f5f4;
        border-color: #a0a0ab;
    }

/* Spacing adjustments */
.ln-main {
    padding-top:15px;
}

.ln-left {
    padding-top: 16px;
    padding-bottom: 32px;
}

.ln-right {
    padding-top: 16px;
    padding-bottom: 32px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1020px) {
    .ln-main-inner {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }

    .ln-left {
        padding: 64px 32px 40px;
    }

    .ln-headline {
        font-size: 58px;
    }

    .ln-right {
        padding: 0 32px 64px;
        justify-content: flex-start;
    }

    .ln-login-card {
        max-width: 440px;
    }

    .ln-nav {
        padding: 0 24px;
    }

    .ln-nav-links {
        display: none;
    }
}

@media (max-width: 860px) {
    .ln-reqs-grid {
        grid-template-columns: 1fr 1fr;
    }

    .ln-step {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 640px) {
    .ln-headline {
        font-size: 44px;
    }

    .ln-steps {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }

    .ln-step {
        width: 100%;
    }

    .ln-step-arrow {
        display: none;
    }

    .ln-reqs-grid {
        grid-template-columns: 1fr;
    }

    .ln-left {
        padding: 48px 20px 32px;
        gap: 28px;
    }

    .ln-right {
        padding: 0 20px 48px;
    }

    .ln-login-card {
        max-width: 100%;
    }

    .ln-left {
        padding-top: 28px;
    }
}
/* ── Action Buttons Group (View Instructions + Buy Voucher) ── */
.ln-action-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 8px;
}

/* View Instructions button */
.ln-show-instr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    border: 1.5px solid #e4e4e7;
    border-radius: 9px;
    background: #fff;
    color: #52525e;
    font-size: 13px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background .15s, border-color .15s;
    flex: 1;
}

    .ln-show-instr-btn i {
        font-size: 16px;
        color: #a0a0ab;
    }

    .ln-show-instr-btn:hover {
        background: #f5f5f4;
        border-color: #a0a0ab;
    }

/* Buy Voucher Button - BLACK */
.ln-buy-voucher-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 10px 18px;
    background: #0a0a0a;
    color: white;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
    border: none;
}

    .ln-buy-voucher-btn i {
        font-size: 16px;
    }

    .ln-buy-voucher-btn:hover {
        background: #1a1a1a;
        transform: translateY(-1px);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .ln-buy-voucher-btn:active {
        transform: translateY(0);
    }

/* Responsive */
@media (max-width: 640px) {
    .ln-action-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .ln-show-instr-btn,
    .ln-buy-voucher-btn {
        width: 100%;
        padding: 10px 16px;
    }
}