:root {
    --bg-dark: #071428;
    --bg-panel: #0b1f3a;
    --bg-soft: #0e2747;
    --border-glow: rgba(0,255,255,0.25);
    --cyan: #00e0ff;
    --teal: #00bcd4;
    --green: #00ff9c;
    --red: #ff4d4f;
    --text-light: #e6f1ff;
    --text-dim: #8aa4c8;
    --radius: 18px;
}

.second-bg-area {
    background: none;
}

/* BODY */

body {
    margin: 0;
    font-family: 'Poppins',system-ui,-apple-system,Segoe UI,sans-serif;
    background: linear-gradient(180deg,#061326,#071c33 60%,#061326);
    color: var(--text-light);
    line-height: 1.6;
}

/* PAGE */

.page {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
}

/* HERO */

.hero {
    background: linear-gradient(135deg,#0c2342,#0a1d36);
    border-radius: 24px;
    padding: 35px;
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 40px rgba(0,255,255,0.08);
    margin-bottom: 40px;
}

    .hero h1 {
        font-size: 2.4rem;
        margin-bottom: 10px;
        color: white;
        animation-name: glow;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-direction: alternate;
    }

    .hero p {
        color: var(--text-dim);
        font-size: 15px;
    }



/* MAIN GRID */

.layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

/* CARD */

.card {
    background: var(--bg-panel);
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--border-glow);
    box-shadow: 0 0 30px rgba(0,255,255,.08);
    transition: .3s;
}

    .card:hover {
        box-shadow: 0 0 45px rgba(0,255,255,.2);
    }

    .card h2 {
        margin-bottom: 25px;
        color: var(--cyan);
    }

/* FORM */

.field {
    margin-bottom: 18px;
}

label {
    font-size: 14px;
    color: var(--text-dim);
    display: block;
    margin-bottom: 6px;
}

input {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border-glow);
    background: #0b1d33;
    color: white;
    font-size: 14px;
    transition: .3s;
}

    input:focus {
        outline: none;
        border-color: var(--cyan);
        box-shadow: 0 0 10px var(--cyan);
    }

/* BUTTON */

button {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(135deg,#e1b75e,#00e0ff);
    color: #081024;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: .3s;
    box-shadow: 0 8px 25px rgba(0,255,255,.2);
}

    button:hover {
        transform: translateY(-3px);
        box-shadow: 0 15px 40px rgba(0,255,255,.35);
    }

.uiverse-btn {
    width: 100%;
    margin-top: 15px;
    padding: 14px;
    border: none;
    outline: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    background: #111;
    color: #fff;
    overflow: hidden;
    transition: 0.3s ease;
    z-index: 1;
}

    /* Gradient animated border */
    .uiverse-btn::before {
        content: "";
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, #e1b75e, #00e0ff, #e1b75e);
        z-index: -1;
        border-radius: 16px;
        animation: rotate 3s linear infinite;
    }

    .uiverse-btn::after {
        content: "";
        position: absolute;
        inset: 2px;
        background: #081024;
        border-radius: 12px;
        z-index: -1;
    }

    /* Hover effect */
    .uiverse-btn:hover {
        transform: translateY(-3px);
    }



/* RESULTS */

.result {
    margin-bottom: 20px;
    padding: 22px;
    border-radius: 16px;
    background: linear-gradient(135deg,#0e2a4d,#0b1d33);
    border: 1px solid var(--border-glow);
    font-size: 18px;
    transition: .3s;
}

    .result:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(0,255,255,.25);
    }

/* Special Revenue Colors */

#monthlyRevenue {
    border-left: 5px solid #00ff9c;
}

#annualRevenue {
    border-left: 5px solid #00ff9c;
}

#hoursSaved {
    border-left: 5px solid cyan;
}

#hiringSavings {
    border-left: 5px solid red;
}

/* SECTION TITLES */

.section-title {
    text-align: center;
    margin: 70px 0 25px;
    font-size: 28px;
    color: var(--cyan);
}

/* INFO CARDS */

.cards-row,
.impact-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.info-card,
.impact-card {
    background: var(--bg-panel);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-glow);
    transition: .3s;
}

    .info-card:hover,
    .impact-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 0 35px rgba(0,255,255,.2);
    }

.clue {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #00e0ff !important;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgb(255 165 0 / 74%);
    position: relative;
    z-index: 1;
}

#monthlyRevenue, #annualRevenue {
    color: #00ff9c;
    text-shadow: -6px 6px 10px rgb(255 255 255 / 30%);
}

#hoursSaved {
    color: #00e0ff;
    text-shadow: -6px 6px 10px rgb(255 255 255 / 30%);
}

#hiringSavings {
    color: #ff4d4f;
    text-shadow: -6px 6px 10px rgb(255 255 255 / 30%);
}

@keyframes glow {
    from {
        text-shadow: 0px 0px 5px #7fa2fa7d,0px 0px 5px #7be4ee75;
    }

    to {
        text-shadow: 0px 0px 20px #6a5acd8c,0px 0px 20px #68c0ff8a;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* Laptop */
@media (max-width: 1200px) {

    .page {
        padding: 40px 18px;
    }

    .layout {
        gap: 24px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .cards-row,
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet */
@media (max-width: 991px) {

    .hero {
        padding: 28px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

    .layout {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 24px;
    }

    .section-title {
        font-size: 24px;
        margin: 50px 0 20px;
    }

    .clue {
        font-size: 2.5rem;
    }

    .result {
        font-size: 16px;
        padding: 18px;
    }
}

/* Mobile */
@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }

    .page {
        padding: 30px 14px;
    }

    .hero {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 13px;
        line-height: 1.7;
    }

    .card {
        padding: 20px 16px;
        border-radius: 16px;
    }

    .card h2 {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }

    .cards-row,
    .impact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .info-card,
    .impact-card {
        padding: 18px;
    }

    .section-title {
        font-size: 22px;
        margin: 45px 0 18px;
    }

    .clue {
        font-size: 2rem;
    }

    .result {
        padding: 16px;
        font-size: 15px;
        border-radius: 14px;
    }

    input {
        padding: 12px;
        font-size: 14px;
    }

    button,
    .uiverse-btn {
        padding: 13px;
        font-size: 15px;
        border-radius: 12px;
    }

    label {
        font-size: 13px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 1.3rem;
    }

    .hero p {
        font-size: 12px;
    }

    .card h2 {
        font-size: 1.1rem;
    }

    .clue {
        font-size: 1.7rem;
    }

    .result {
        font-size: 14px;
    }

    .section-title {
        font-size: 20px;
    }

    input {
        padding: 11px;
    }

    button,
    .uiverse-btn {
        font-size: 14px;
        padding: 12px;
    }
}
