/* ============================================
   EVRINT - Static Pages (About, Privacy, Terms)
   ============================================ */

.page {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
}

.page-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.page-glow {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

/* Additional glowing orbs */
.page::before {
    content: '';
    position: fixed;
    bottom: 20%;
    left: 5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 60%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.page::after {
    content: '';
    position: fixed;
    top: 40%;
    right: 5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 60%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.page-container {
    position: relative;
    z-index: 5;
    max-width: 800px;
    margin: 0 auto;
}

/* Header */
.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-logo {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
}

.page-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.4));
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-subtitle {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Content */
.page-content {
    background: rgba(10, 10, 20, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 48px;
    backdrop-filter: blur(20px);
}

.content-section {
    margin-bottom: 48px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.content-section h3 {
    font-size: 1.125rem;
    color: var(--gray-200);
    margin: 24px 0 12px;
}

.content-section p {
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 16px;
}

.content-section p:last-child {
    margin-bottom: 0;
}

.content-section ul,
.content-section ol {
    color: var(--gray-300);
    margin: 16px 0;
    padding-left: 24px;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 8px;
}

.content-section strong {
    color: var(--white);
}

/* Legal pages */
.legal h2 {
    font-size: 1.25rem;
}

.legal h3 {
    font-size: 1rem;
    color: var(--gray-300);
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.tech-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    transition: all var(--fast) var(--ease);
}

.tech-item:hover {
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.tech-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(59, 130, 246, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.tech-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.tech-item h3 {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.tech-item p {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin: 0;
}

/* Values List */
.values-list {
    margin-top: 24px;
}

.value-item {
    display: flex;
    gap: 24px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.value-item:first-child {
    padding-top: 0;
}

.value-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.value-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
}

.value-content h3 {
    font-size: 1.125rem;
    color: var(--white);
    margin: 0 0 8px;
}

.value-content p {
    color: var(--gray-400);
    margin: 0;
}

/* Footer */
.page-footer {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--gray-400);
    font-size: 0.9375rem;
    transition: color var(--fast) var(--ease);
}

.footer-links a:hover {
    color: var(--white);
    opacity: 1;
}

.page-footer p {
    color: var(--gray-600);
    font-size: 0.8125rem;
}

/* Back Link */
.back-link {
    position: fixed;
    top: 28px;
    left: 28px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: 0.9375rem;
    font-weight: 500;
    z-index: 100;
    transition: color var(--fast) var(--ease);
}

.back-link:hover {
    color: var(--white);
    opacity: 1;
}

.back-link svg {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .page {
        padding: 60px 16px;
    }

    .page-content {
        padding: 32px 24px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .value-item {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 16px;
    }
}