/* Secured Webpack decoy landing — shown at root URL only */
:root {
    --bg1: #0f172a;
    --bg2: #07103a;
    --accent: #06b6d4;
    --card: #0b1220;
    --muted: #9aa6bd;
    --glass: rgba(255, 255, 255, 0.03);
    --radius: 16px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }

html, body.secured-landing-page {
    height: 100%;
    margin: 0;
}

body.secured-landing-page {
    background: linear-gradient(135deg, var(--bg1), var(--bg2));
    color: #e6eef8;
    -webkit-font-smoothing: antialiased;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.secured-container {
    width: 100%;
    max-width: 920px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.03));
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 8px 30px rgba(2, 6, 23, 0.6);
    display: flex;
    gap: 28px;
    align-items: center;
}

.secured-left {
    flex: 1;
    min-width: 260px;
}

.secured-logo {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.secured-logo img {
    width: auto;
    height: 56px;
    max-width: 180px;
    border-radius: 0;
    object-fit: contain;
}

.secured-brand {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.4px;
}

.secured-subbrand {
    font-size: 12px;
    color: var(--muted);
}

.secured-title {
    margin: 0 0 8px;
    font-size: 28px;
    line-height: 1.06;
}

.secured-lead {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

.secured-status-card {
    background: var(--glass);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    width: fit-content;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.secured-spinner {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.secured-spinner::after {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 8px;
    border: 4px solid rgba(255, 255, 255, 0.06);
    border-top-color: var(--accent);
    animation: secured-spin 1.3s linear infinite;
}

@keyframes secured-spin {
    to { transform: rotate(360deg); }
}

.secured-status-text {
    font-weight: 700;
}

.secured-actions {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.secured-btn {
    padding: 10px 12px;
    border-radius: 10px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: inherit;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
}

.secured-btn-primary {
    background: linear-gradient(90deg, var(--accent), #0ea5a1);
    color: #052024;
    border: 0;
    box-shadow: 0 6px 18px rgba(6, 182, 212, 0.12);
}

.secured-footer {
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.secured-footer-links {
    display: flex;
    gap: 10px;
}

.secured-right {
    width: 340px;
    min-width: 220px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
}

.secured-right h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.secured-progress {
    height: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 999px;
    overflow: hidden;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.6);
}

.secured-progress > i {
    display: block;
    height: 100%;
    width: 32%;
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.9), rgba(3, 105, 161, 0.9));
    transition: width 700ms ease;
}

.secured-muted {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    margin: 0;
}

.secured-time-label {
    font-weight: 700;
    font-size: 13px;
    margin: 0;
}

.secured-time {
    font-family: Consolas, "Courier New", monospace;
    font-size: 13px;
    margin: 0;
}

@media (max-width: 720px) {
    .secured-container {
        flex-direction: column;
        padding: 18px;
    }

    .secured-right {
        width: 100%;
    }
}
