body.launch81-page {
    margin: 0;
    min-height: 100vh;
    font-family: "Open Sans", Arial, sans-serif;
    color: #24374c;
    background:
        radial-gradient(circle at 85% 6%, rgba(31, 63, 102, 0.08) 0%, rgba(31, 63, 102, 0) 35%),
        radial-gradient(circle at 12% 3%, rgba(180, 144, 87, 0.16) 0%, rgba(180, 144, 87, 0) 38%),
        linear-gradient(180deg, #f2e6d3 0%, #faf6ee 45%, #ffffff 100%);
}

.launch81-shell {
    padding: 26px 0 36px;
}

.launch81-hero__panel,
.launch81-aracaju__panel {
    border-radius: 20px;
    border: 1px solid rgba(31, 63, 102, 0.14);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 18px 40px rgba(26, 50, 77, 0.12);
    backdrop-filter: blur(3px);
}

.launch81-hero__panel {
    padding: clamp(22px, 4vw, 38px);
    animation: launch81-enter 0.75s ease;
}

.launch81-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border-radius: 999px;
    font-weight: 700;
    color: #1f3f66;
    border: 1px solid rgba(31, 63, 102, 0.25);
    background: rgba(255, 255, 255, 0.94);
    margin-bottom: 12px;
}

.launch81-hero h1 {
    margin: 0 0 8px;
    font-size: clamp(30px, 4.3vw, 48px);
    line-height: 1.14;
    color: #173554;
}

.launch81-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    margin-bottom: 8px;
    font-weight: 600;
}

.launch81-subtext {
    margin-bottom: 14px;
    color: #4a6077;
}

.launch81-release-date {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 0 0 18px;
    padding: 8px 12px;
    border-radius: 12px;
    color: #1f3f66;
    background: rgba(248, 241, 229, 0.96);
    border: 1px solid rgba(180, 144, 87, 0.35);
}

.launch81-countdown {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.launch81-time-box {
    text-align: center;
    padding: 12px 8px;
    border-radius: 14px;
    border: 1px solid rgba(31, 63, 102, 0.15);
    background: linear-gradient(180deg, #ffffff 0%, #f8f2e8 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.launch81-time-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(20, 44, 71, 0.14);
}

.launch81-time-value {
    display: block;
    font-size: clamp(25px, 4vw, 38px);
    line-height: 1;
    font-weight: 700;
    color: #1f3f66;
}

.launch81-time-label {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #6a5b45;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.launch81-highlights {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.launch81-card {
    padding: 16px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 63, 102, 0.13);
    box-shadow: 0 12px 26px rgba(22, 45, 71, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.launch81-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(22, 45, 71, 0.14);
}

.launch81-card i {
    font-size: 24px;
    color: #1f3f66;
}

.launch81-card h3 {
    margin: 12px 0 8px;
    font-size: 18px;
    color: #173554;
}

.launch81-card p {
    margin: 0;
    color: #4d6075;
}

.launch81-aracaju {
    margin-top: 18px;
}

.launch81-aracaju__panel {
    padding: clamp(18px, 3.2vw, 30px);
}

.launch81-aracaju h2 {
    margin: 0 0 10px;
    color: #173554;
}

.launch81-aracaju p {
    margin: 0 0 8px;
    color: #465c73;
    line-height: 1.6;
}

.launch81-footer {
    text-align: center;
    padding-top: 22px;
    color: #5e6f7f;
    font-weight: 600;
}

@keyframes launch81-enter {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 991px) {
    .launch81-countdown {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .launch81-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .launch81-shell {
        padding-top: 16px;
    }

    .launch81-highlights {
        grid-template-columns: 1fr;
    }
}
