/* static/css/in_construct_style.css */
:root {
    --navy-deep: #0a1526;
    --navy-mid: #16264a;
    --navy-light: #1b3d73;
    --accent-red: #b61e25;
}

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

html, body {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy-mid) 55%, var(--navy-light) 130%);
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 24px;
}

/* Glows decorativos -- mismo lenguaje que usamos en footer/navbar */
.cs-bg-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
    z-index: 0;
}

.cs-bg-shape-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(182, 30, 37, 0.25) 0%, transparent 70%);
    top: -140px;
    left: -140px;
}

.cs-bg-shape-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(182, 30, 37, 0.18) 0%, transparent 70%);
    bottom: -160px;
    right: -160px;
}

.cs-card {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-radius: 24px;
    padding: 56px 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.cs-logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto 28px;
    display: block;
}

.cs-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #ff5b63;
    margin-bottom: 16px;
}

.cs-eyebrow::before,
.cs-eyebrow::after {
    content: "";
    width: 22px;
    height: 2px;
    background: #ff5b63;
    display: inline-block;
}

.cs-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 18px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.cs-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 32px;
}

.cs-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent-red);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    box-shadow: 0 10px 24px rgba(182, 30, 37, 0.35);
    transition: background 0.2s ease, transform 0.2s ease;
}

.cs-btn:hover {
    background: #7f151a;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 500px) {
    .cs-card {
        padding: 44px 26px;
        border-radius: 20px;
    }
    .cs-title {
        font-size: 2.1rem;
    }
    .cs-bg-shape-1,
    .cs-bg-shape-2 {
        width: 320px;
        height: 320px;
    }
}