/* ========================================= */
/*  VERIFY PAGE - ELITE TECHNICAL PORTAL     */
/* ========================================= */

:root {
    --verify-bg: #050505;
    --verify-accent: #e11d2e;
    --verify-glow: rgba(225, 29, 46, 0.4);
    --tech-blue: #00f2ff;
    --glass-bg: rgba(10, 10, 10, 0.8);
    --glass-border: rgba(255, 255, 255, 0.05);
}

.verify-hero {
    /* FIXED: Removed excessive 100vh that caused empty space at bottom */
    min-height: calc(100vh - 64px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    /* Reduced padding to remove empty space */
    background: #000;
    position: relative;
    overflow: hidden;
}

/* Technical Grid Background */
.verify-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    pointer-events: none;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* Scanning Line Effect */
.verify-hero::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(225, 29, 46, 0.05), transparent);
    animation: techScan 6s linear infinite;
    pointer-events: none;
}

@keyframes techScan {
    0% {
        top: -100%;
    }

    100% {
        top: 100%;
    }
}

.verify-container {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

/* Left Column: Info */
.verify-header {
    text-align: left;
}

.verify-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(225, 29, 46, 0.1);
    border: 1px solid rgba(225, 29, 46, 0.2);
    border-radius: 100px;
    margin-bottom: 20px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--verify-accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--verify-accent);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.verify-status span {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--verify-accent);
    text-transform: uppercase;
}

.verify-header h1 {
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 950;
    line-height: 0.95;
    letter-spacing: -3px;
    margin-bottom: 25px;
    color: var(--verify-accent);
    /* Applied suit red */
}

.verify-header h1 span {
    color: #fff;
    opacity: 0.4;
}

.verify-header p {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Right Column: The Core Engine Card */
.verify-card {
    background: var(--glass-bg);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 48px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8),
        inset 0 0 40px rgba(255, 255, 255, 0.01);
    position: relative;
    transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.verify-card:hover {
    border-color: rgba(225, 29, 46, 0.3);
    transform: translateY(-5px);
}

.verify-label {
    display: block;
    font-size: 11px;
    font-weight: 900;
    color: #444;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.verify-input {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 32px;
    border-radius: 20px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    outline: none;
    transition: 0.3s;
    font-family: 'Inter', monospace;
    letter-spacing: 1px;
}

.verify-input:focus {
    border-color: var(--verify-accent);
    background: #080808;
    box-shadow: 0 0 30px rgba(225, 29, 46, 0.1);
}

.verify-main-btn {
    width: 100%;
    padding: 24px;
    border-radius: 20px;
    background: var(--verify-accent);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 30px var(--verify-glow);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.verify-main-btn:hover {
    background: #ff1f32;
    /* Match red-hover in corporate.css */
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 15px 40px var(--verify-glow);
}

/* Dynamic Result Styling */
.verify-result {
    margin-top: 35px;
    display: none;
    animation: resEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes resEntrance {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.result-card.success {
    background: rgba(34, 197, 94, 0.05);
    border-color: rgba(34, 197, 94, 0.2);
}

.result-card.error {
    background: rgba(225, 29, 46, 0.05);
    border-color: rgba(225, 29, 46, 0.2);
}

.result-info h4 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
    color: #fff;
}

.result-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Features Bar Below */
.verify-features {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-top: 40px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.v-feature {
    flex: 1;
    text-align: left;
}

.v-feature h3 {
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.v-feature p {
    font-size: 13px;
    color: #444;
    line-height: 1.7;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .verify-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .verify-header {
        text-align: center;
    }

    .verify-features {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 640px) {
    .verify-hero {
        padding: 40px 15px;
    }

    .verify-card {
        padding: 40px 24px;
        border-radius: 32px;
    }
}