/* ====== VECTORES V2 - PRECISION & ART UX ====== */

:root {
    --accent-glow: rgba(255, 204, 0, 0.15);
}

.vectors-page {
    background-color: var(--base-100);
    color: var(--fg-primary);
    overflow-x: hidden;
    font-family: var(--font-sans);
}

/* Technical Hero Section */
.hero-vectors {
    position: relative;
    padding: 120px 20px 80px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-vectors h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-vectors p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: var(--fg-secondary);
}

/* Refined Beam Effect - Precision Spotlight */
.beam {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255,204,0,0.08) 0%, transparent 60%),
        conic-gradient(from 180deg at 50% 50%, transparent 45%, rgba(255,204,0,0.05) 50%, transparent 55%);
    z-index: -1;
    animation: rotateBeam 20s linear infinite;
    pointer-events: none;
}

@keyframes rotateBeam {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Technical Blueprint Grid Background */
.blueprint-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    mask-image: radial-gradient(circle at center, black, transparent 80%);
}

/* Technical Gallery */
.tech-gallery {
    padding: 80px 0;
    background: var(--base-200);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    position: relative;
    background: var(--base-300);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-default);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
}

.tech-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), 0 0 20px rgba(255, 204, 0, 0.1);
}

.tech-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    filter: contrast(1.1) brightness(0.9);
    transition: all 0.4s ease;
}

.tech-card:hover img {
    filter: contrast(1) brightness(1);
    transform: scale(1.05);
}

.tech-info {
    padding: 24px;
    background: linear-gradient(to top, var(--base-300) 80%, transparent);
}

.tech-info h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.tech-info span {
    font-size: 0.85rem;
    color: var(--fg-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Pricing Section */
.pricing-vectors {
    padding: 100px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 60px auto 0;
}

.pricing-card {
    background: var(--base-200);
    border: 1px solid var(--border-default);
    border-radius: 32px;
    padding: 48px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin: 24px 0;
}

.price-tag span {
    font-size: 1rem;
    color: var(--fg-muted);
}

/* Animation for rotation/dynamic feel */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.tech-card {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.tech-card:nth-child(2) { animation-delay: 0.1s; }
.tech-card:nth-child(3) { animation-delay: 0.2s; }
.tech-card:nth-child(4) { animation-delay: 0.3s; }
.tech-card:nth-child(n+5) { animation-delay: 0.4s; }

/* Modal Video (Reused logic) */
.vector-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    display: none;
}

.vector-modal.open {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vector-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 11, 20, 0.95);
    backdrop-filter: blur(10px);
}

.vector-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 1;
}

.vector-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

/* Form & Footer Consistency */
footer.enterprise-footer {
    padding: 80px 0 40px;
    background: var(--base-100);
    border-top: 1px solid var(--border-default);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-brand p {
    margin-top: 20px;
    max-width: 300px;
}

.footer-links h4 {
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links a, .footer-links p {
    display: block;
    margin-bottom: 12px;
    color: var(--fg-secondary);
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-primary);
}

@media (max-width: 768px) {
    .footer-content { grid-template-columns: 1fr; gap: 40px; }
}
