/* Contract Verification Page Styles */

.cv-wrapper {
    background: var(--bg-dark-surface);
    min-height: 100vh;
    padding: 80px 0 0 0;
}

.cv-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 32px;
}

.cv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

/* Image Column */
.cv-image-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Long Text Section */
.cv-long-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg-chat-area);
    padding: 32px;
    border-radius: 8px;
}

.cv-long-text h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cv-long-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Details Column */
.cv-details-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.cv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.cv-breadcrumb a,
.cv-breadcrumb a:link,
.cv-breadcrumb a:visited {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.cv-breadcrumb a:hover {
    color: var(--text-primary);
}

.cv-breadcrumb span:not(:last-child) {
    color: var(--text-muted);
}

.cv-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.2;
}

.cv-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.cv-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--bg-chat-area);
    padding: 32px;
    border-radius: 8px;
}

.cv-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.cv-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cv-list li {
    font-size: 1rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
}

.cv-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #FFFFFF;
    font-size: 1.5rem;
    line-height: 1;
}

/* Steps */
.cv-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.cv-step-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cv-step-number {
    width: auto;
    min-width: 40px;
    height: auto;
    border-radius: 0;
    background: transparent;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
    line-height: 1.125rem;
}

.cv-step-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 6px 0;
    line-height: 1.125rem;
}

.cv-step-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Button */
.cv-button {
    padding: 14px 32px;
    background: #E5E5E5;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
}

/* Security Notice */
.cv-security-notice {
    background: var(--bg-chat-area);
    border: none;
    border-radius: 8px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.cv-security-notice i {
    font-size: 1.5rem;
    color: #E5E5E5;
    flex-shrink: 0;
}

.cv-security-notice p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Legal Disclaimer */
.cv-legal-disclaimer {
    background: var(--bg-chat-area);
    border: none;
    border-radius: 8px;
    padding: 24px 32px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.cv-legal-disclaimer i {
    font-size: 1.25rem;
    color: var(--text-muted);
    flex-shrink: 0;
    margin-top: 2px;
}

.cv-legal-disclaimer p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.cv-legal-disclaimer strong {
    color: var(--text-secondary);
}

/* Example Questions */
.cv-examples li {
    font-style: italic;
    color: var(--text-muted);
}

.cv-examples li::before {
    content: '"';
    color: var(--text-muted);
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .cv-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .cv-image-column {
        position: relative;
        top: 0;
    }

    .cv-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .cv-wrapper {
        padding-top: 60px;
    }

    .cv-container {
        padding: 24px 20px;
    }

    .cv-title {
        font-size: 1.75rem;
    }

    .cv-description {
        font-size: 1rem;
    }

    .cv-section h2 {
        font-size: 1.125rem;
    }

    .cv-details-column {
        gap: 24px;
    }
}

/* ============================================================
   Light mode (theme-aware): white by default on the landing,
   reverts to the dark .cv design when the user picks dark.
   ============================================================ */
.light-landing .cv-wrapper { background: #ffffff; }
.light-landing .cv-long-text,
.light-landing .cv-section,
.light-landing .cv-security-notice,
.light-landing .cv-legal-disclaimer {
    background: #f5f6f8;
    border: 1px solid rgba(0, 0, 0, 0.07);
}
.light-landing .cv-title,
.light-landing .cv-long-text h3,
.light-landing .cv-section h2,
.light-landing .cv-step-item h3,
.light-landing .cv-step-number { color: #181818; }
.light-landing .cv-description,
.light-landing .cv-long-text p,
.light-landing .cv-list li,
.light-landing .cv-step-item p,
.light-landing .cv-security-notice p { color: #4a5568; }
.light-landing .cv-breadcrumb,
.light-landing .cv-breadcrumb a,
.light-landing .cv-breadcrumb a:link,
.light-landing .cv-breadcrumb a:visited,
.light-landing .cv-breadcrumb span:not(:last-child),
.light-landing .cv-legal-disclaimer p,
.light-landing .cv-legal-disclaimer i,
.light-landing .cv-examples li { color: #5a5a5a; }
.light-landing .cv-breadcrumb a:hover { color: #181818; }
.light-landing .cv-legal-disclaimer strong { color: #2d3748; }
.light-landing .cv-list li::before { color: #345d9a; }
.light-landing .cv-security-notice i { color: #345d9a; }
.light-landing .cv-button { background: #14171D; color: #ffffff; }
.light-landing .cv-button:hover { background: #2d3748; }
