:root {
    --primary: #00d17d;
    --primary-dark: #00945e;
    --silver: #d7dde5;
    --white: #ffffff;
    --dark: #07130f;
    --card: rgba(255, 255, 255, 0.10);
    --border: rgba(255, 255, 255, 0.20);
    --shadow: rgba(0, 0, 0, 0.35);
    --mouse-x: 50%;
    --mouse-y: 50%;
}

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

body {
    min-height: 100vh;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--white);
    background: var(--dark);
    overflow: hidden;
}

.page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    position: relative;
    background:
        radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(0, 209, 125, 0.22), transparent 26%),
        linear-gradient(135deg, #06120e 0%, #0c241b 45%, #13261f 100%);
}

.page::before,
.page::after {
    content: '';
    position: absolute;
    inset: auto;
    border-radius: 999px;
    filter: blur(6px);
    opacity: 0.55;
    animation: float 8s ease-in-out infinite;
}

.page::before {
    width: 320px;
    height: 320px;
    left: -90px;
    top: -80px;
    background: rgba(0, 209, 125, 0.22);
}

.page::after {
    width: 420px;
    height: 420px;
    right: -140px;
    bottom: -120px;
    background: rgba(215, 221, 229, 0.16);
    animation-delay: 1.5s;
}

.cursor-light {
    position: fixed;
    top: -160px;
    left: -160px;
    width: 320px;
    height: 320px;
    pointer-events: none;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 209, 125, 0.30), transparent 65%);
    transition: transform 0.08s linear;
    z-index: 1;
}

.hero-card {
    width: min(960px, 100%);
    position: relative;
    z-index: 2;
    padding: 48px;
    text-align: center;
    border: 1px solid var(--border);
    border-radius: 34px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
    backdrop-filter: blur(22px);
    box-shadow: 0 28px 80px var(--shadow);
    transform-style: preserve-3d;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.16) 45%, transparent 70%);
    transform: translateX(-110%);
    transition: transform 0.75s ease;
}

.hero-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(0, 209, 125, 0.55);
    box-shadow: 0 36px 95px rgba(0, 209, 125, 0.18);
}

.hero-card:hover::before {
    transform: translateX(110%);
}

.logo-box {
    width: 150px;
    height: 150px;
    margin: 0 auto 24px;
    padding: 14px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.28);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.logo-box:hover {
    transform: rotate(-2deg) scale(1.06);
    box-shadow: 0 22px 70px rgba(0, 209, 125, 0.28);
}

.logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 22px;
}

.status-badge {
    width: fit-content;
    margin: 0 auto 18px;
    padding: 10px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0, 209, 125, 0.35);
    border-radius: 999px;
    background: rgba(0, 209, 125, 0.10);
    color: #bffff0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 0 rgba(0, 209, 125, 0.55);
    animation: pulse 1.8s infinite;
}

h1 {
    max-width: 790px;
    margin: 0 auto;
    font-size: clamp(38px, 6vw, 68px);
    line-height: 1.04;
    letter-spacing: -2.5px;
    font-weight: 800;
}

.subtitle {
    max-width: 720px;
    margin: 22px auto 34px;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(18px, 2.4vw, 24px);
    line-height: 1.55;
}

.data-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 0 auto 30px;
}

.data-item {
    position: relative;
    padding: 20px 16px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.075);
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    overflow: hidden;
    transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.data-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(0, 209, 125, 0.22), transparent 55%);
    opacity: 0;
    transition: opacity 0.28s ease;
}

.data-item:hover {
    transform: translateY(-6px);
    background: rgba(0, 209, 125, 0.10);
    border-color: rgba(0, 209, 125, 0.42);
}

.data-item:hover::after {
    opacity: 1;
}

.data-item span {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.footer-text {
    max-width: 700px;
    margin: 0 auto;
    color: rgba(215, 221, 229, 0.76);
    font-size: 16px;
    line-height: 1.6;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 209, 125, 0.55); }
    70% { box-shadow: 0 0 0 12px rgba(0, 209, 125, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 209, 125, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(28px); }
}

@media (max-width: 760px) {
    body {
        overflow: auto;
    }

    .page {
        padding: 22px;
    }

    .hero-card {
        padding: 34px 22px;
        border-radius: 26px;
    }

    .logo-box {
        width: 118px;
        height: 118px;
        border-radius: 26px;
    }

    .data-panel {
        grid-template-columns: 1fr;
    }

    h1 {
        letter-spacing: -1.4px;
    }
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f7fb;
}

.login-body {
    background: linear-gradient(135deg, #0f172a, #0f766e);
}

.login-card {
    border: none;
    border-radius: 18px;
}

.login-logo {
    max-width: 130px;
}

.btn-primary {
    background-color: #0f766e;
    border-color: #0f766e;
}

.btn-primary:hover {
    background-color: #115e59;
    border-color: #115e59;
}

.card {
    border-radius: 16px;
}