/* Video Intro Overlay */
.intro-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.intro-video-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.skip-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    background: rgba(189, 0, 255, 0.15);
    border: 1px solid rgba(189, 0, 255, 0.3);
    color: var(--color-white);
    padding: 12px 24px;
    border-radius: 30px;
    font-family: var(--font-tech);
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    z-index: 10;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}

.skip-btn:hover {
    background: rgba(0, 240, 255, 0.2);
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    transform: translateX(5px);
}

/* 16:9 Container holding the First Fold */
.viewport-wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: var(--color-black);
    overflow: hidden;
}

/* Video Background Container (index.html) */
.video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 58vw;
    height: 100vh;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#hero-video {
    width: 110%;
    height: 110%;
    object-fit: cover;
    opacity: 0.82;
    filter: brightness(1);
    /* Clean feather fades to black on left/top/bottom */
    mask-image: radial-gradient(circle at 65% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%),
        linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 1) 35%);
    -webkit-mask-image: radial-gradient(circle at 65% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%),
        linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 1) 35%);
}

/* Ambient Glows */
.ambient-glow-1 {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(189, 0, 255, 0.05) 50%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(80px);
}

.ambient-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 85, 255, 0.06) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 1;
    filter: blur(60px);
}

/* Extremely subtle tech grid overlay blending into pure black background */
.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    mask-image: radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    -webkit-mask-image: radial-gradient(circle at 75% 50%, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    z-index: 2;
}

/* Magic Morph Effect */
.magic-morph {
    position: relative;
    display: inline-block;
    transition: var(--transition-smooth);
}

.magic-morph .magic-text {
    display: inline-block;
    transition: text-shadow 0.3s ease, color 0.3s ease;
}

.magic-morph.magic-active .magic-text {
    color: #00f0ff;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8),
        0 0 20px rgba(189, 0, 255, 0.6),
        0 0 30px rgba(189, 0, 255, 0.4);
    animation: magic-flicker 0.15s infinite alternate;
}

@keyframes magic-flicker {
    0% {
        opacity: 0.9;
        transform: skewX(-1deg);
    }

    100% {
        opacity: 1;
        transform: skewX(1deg) scale(1.02);
    }
}

.header-cta {
    text-decoration: none;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
    font-family: var(--font-tech);
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-cta:hover {
    border-color: var(--color-purple);
    background: rgba(189, 0, 255, 0.05);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.15);
    transform: translateY(-2px);
}

/* Hero Content Layout */
.hero-container {
    position: relative;
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding: 100px 80px 0 80px;
    z-index: 5;
    pointer-events: none;
}

/* Content occupies maximum 80% of the width, leaving the right side clear for background animation */
.hero-content {
    max-width: 80%;
    display: flex;
    flex-direction: column;
    gap: 28px;
    pointer-events: auto;
}

/* Futuristic Premium Badge */
.badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(189, 0, 255, 0.02);
    border: 1px solid rgba(189, 0, 255, 0.2);
    padding: 6px 16px;
    border-radius: 100px;
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    box-shadow: inset 0 0 10px rgba(189, 0, 255, 0.05), 0 0 15px rgba(189, 0, 255, 0.05);
    transition: var(--transition-smooth);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-purple);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--color-purple);
    position: relative;
}

.badge-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 12px;
    height: 12px;
    border: 1px solid var(--color-purple);
    border-radius: 50%;
    animation: pulse-ping 2s infinite;
}

.badge:hover {
    border-color: rgba(189, 0, 255, 0.4);
    background: rgba(189, 0, 255, 0.05);
}

/* Title with Premium Gradient Typography */
.hero-title {
    font-family: var(--font-headline);
    font-size: clamp(3rem, 4.3vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -1px;
    color: var(--color-white);
}

span.gradient-text {
    font-family: var(--font-highlight);
    font-weight: 800;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 50%, #00f0ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    display: inline-block;
}

/* Subtitle */
.hero-subtitle {
    font-family: var(--font-text);
    font-size: 17px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--color-gray-400);
    max-width: 90%;
}

/* Call To Action Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
}

.btn-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--color-white);
    background: rgba(10, 10, 15, 0.7);
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 8px;
    padding: 14px 28px 14px 54px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 18px;
    transition: var(--transition-smooth);
    margin-left: 24px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 8px;
    padding: 1.5px;
    background: linear-gradient(90deg, #bd00ff, #0055ff, #00f0ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.btn-icon {
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #0d0d12;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 0 25px rgba(189, 0, 255, 0.3);
}

.btn-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #bd00ff, #00f0ff);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
}

.btn-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-white);
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transition: var(--transition-smooth);
}

.btn-text,
.btn-primary i.fa-arrow-right {
    position: relative;
    z-index: 1;
}

.btn-primary i.fa-arrow-right {
    margin-left: 14px;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
    transform: scale(1.02);
}

.btn-primary:hover .btn-icon {
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.5);
}

.btn-primary:hover .btn-icon::before {
    background: linear-gradient(135deg, #00f0ff, #bd00ff);
}

.btn-primary:hover .btn-icon svg {
    transform: rotate(45deg) scale(1.1);
}

.btn-primary:hover i.fa-arrow-right {
    transform: translateX(6px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(189, 0, 255, 0.25);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 500;
    font-family: var(--font-tech);
    font-size: 15px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    border-color: rgba(189, 0, 255, 0.45);
    background: rgba(189, 0, 255, 0.04);
    transform: translateY(-3px);
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 50px;
    width: 100%;
}

.feature-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 10px 40px;
    background: transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.35s ease;
    position: relative;
    align-items: center;
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:first-child {
    padding-left: 0;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon-wrapper {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 85, 255, 0.4);
    box-shadow: inset 0 0 15px rgba(189, 0, 255, 0.2);
    transition: var(--transition-smooth);
    position: relative;
    margin-bottom: 8px;
}

/* Outer ring */
.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    border: 1px solid rgba(189, 0, 255, 0.3);
    transition: var(--transition-smooth);
}

.feature-icon-wrapper svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke-width: 1.5;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 0 6px rgba(189, 0, 255, 0.5));
}

.feature-card:hover .feature-icon-wrapper {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: inset 0 0 20px rgba(0, 240, 255, 0.3), 0 0 15px rgba(0, 240, 255, 0.2);
}

.feature-card:hover .feature-icon-wrapper::before {
    border-color: rgba(189, 0, 255, 0.6);
    transform: scale(1.05);
}

.feature-title {
    font-size: 19px;
    font-weight: 500;
    color: var(--color-white);
    font-family: var(--font-headline);
    letter-spacing: 0.5px;
}

.feature-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    font-weight: 300;
    font-family: var(--font-text);
}

/* Arcane Rune Element */
.arcane-rune {
    margin-top: auto;
    /* Push to bottom */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20px;
    color: rgba(189, 0, 255, 0.8);
    font-size: 14px;
    text-shadow: 0 0 8px rgba(189, 0, 255, 0.8);
    transition: var(--transition-smooth);
}

.arcane-rune::before,
.arcane-rune::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(189, 0, 255, 0.3));
}

.arcane-rune::before {
    right: 55%;
}

.arcane-rune::after {
    left: 55%;
    background: linear-gradient(270deg, transparent, rgba(189, 0, 255, 0.3));
}

.feature-card:hover .arcane-rune {
    color: rgba(0, 240, 255, 0.9);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.8);
    transform: scale(1.1);
}

.feature-card:hover .arcane-rune::before,
.feature-card:hover .arcane-rune::after {
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.5));
}

.feature-card:hover .arcane-rune::after {
    background: linear-gradient(270deg, transparent, rgba(0, 240, 255, 0.5));
}

/* Tech Stats Footer (Bottom of Fold) */
.hero-footer {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 30px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    width: 100%;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(189, 0, 255, 0.15);
    background: rgba(189, 0, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #bd00ff;
    font-size: 18px;
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.05);
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-value {
    font-family: var(--font-tech);
    font-size: 24px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.stat-label {
    font-size: 10px;
    font-weight: 500;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Video Background Container */
.video-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 58vw;
    height: 100vh;
    z-index: 3;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

#hero-video {
    width: 110%;
    height: 110%;
    object-fit: cover;
    opacity: 0.82;
    filter: brightness(1);

    /* Clean feather fades to black on left/top/bottom */
    mask-image: radial-gradient(circle at 65% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%),
        linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 1) 35%);
    -webkit-mask-image: radial-gradient(circle at 65% 50%, rgba(0, 0, 0, 1) 30%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 90%),
        linear-gradient(to right, transparent 5%, rgba(0, 0, 0, 1) 35%);
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
}

/* Custom Keyframe Animations */
@keyframes pulse-ping {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes line-slide {
    0% {
        left: -30%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stats-grid {
        gap: 20px;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 0;
    }

    .header-container {
        padding: 10px 40px;
    }

    .header-container::after {
        display: none;
    }

    nav {
        display: none;
        /* Hide main links on smaller screens for clean layout */
    }

    .hero-container {
        padding: 0 40px;
    }

    .hero-content {
        max-width: 70%;
    }

    .video-wrapper {
        width: 100%;
        opacity: 0.5;
        /* Blend completely under the text when stacked */
        mask-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 1) 50%);
        -webkit-mask-image: linear-gradient(to top, transparent, rgba(0, 0, 0, 1) 50%);
    }

    .hero-footer {
        padding: 30px 40px;
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-content {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }
}

/* About Us Section Styles */
.about-section {
    position: relative;
    z-index: 5;
    background-color: transparent;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.sticky-content {
    position: relative;
    min-height: 100vh;
    height: auto;
    width: 100%;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}



/* Mouse Parallax wrapper */
.video-parallax-wrapper {
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.video-parallax-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
    /* Glowing faded borders using the color palette */

    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.8), inset 0 0 200px rgba(189, 0, 255, 0.3);
}

/* Ambient corner glow elements that fade in with the content */
.corner-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
    filter: blur(160px);
    opacity: 0.8;
    visibility: visible;
    mix-blend-mode: screen;
    will-change: opacity;
}

.corner-glow.glow-purple-pink {
    background: radial-gradient(circle, rgba(189, 0, 255, 0.25) 0%, rgba(255, 0, 128, 0.15) 70%, transparent 100%);
}

.corner-glow.glow-cyan-blue {
    background: radial-gradient(circle, rgba(0, 229, 255, 0.2) 0%, rgba(0, 85, 255, 0.1) 70%, transparent 100%);
}

.corner-glow.top-left {
    top: -15%;
    left: -15%;
}

.corner-glow.bottom-right {
    bottom: -15%;
    right: -15%;
}

#intro2-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: transform;
}

.about-card {
    width: 100%;
    max-width: 1280px;
    margin: 0px auto 0 auto;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: auto;
}

.about-hero-block {
    flex-direction: row;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 50px;
    background: none;
    border: none;
    box-shadow: none;
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    padding: 40px 20px;
    min-height: 450px;
    margin-top: 3rem;
}

.monolith-wrapper {
    flex: 0 0 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.monolith-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(189, 0, 255, 0.15) 0%, rgba(0, 229, 255, 0.1) 60%, rgba(255, 0, 200, 0.05) 100%);
    filter: blur(40px);
    z-index: -1;
    border-radius: 50%;
    pointer-events: none;
}

.monolith-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.about-text-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(2px);
    margin-left: 20px;
    margin-right: 19rem;
    border: 1px solid #00BCD4;
    max-width: 430px;
    border-radius: 15px;
    padding: 2rem;
    background-color: #000000a6;
}

.about-badge {
    align-self: flex-start;
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}



.about-title {
    font-size: clamp(2.2rem, 2.5vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-white);
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.title-highlight {
    color: #00e5ff;
}

.about-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-white);
    font-weight: 400;
}

.about-desc:first-of-type {
    color: var(--color-white);
    font-weight: 500;
}

.btn-jornada {
    margin-top: 10px;
    align-self: flex-start;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
    background: transparent;
    border: 1px solid var(--color-purple);
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-jornada:hover {
    background: rgba(189, 0, 255, 0.1);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.2);
}

.about-values-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

.value-col {
    background-color: #000000b8;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.value-col:last-child {
    border-right: none;
}

.value-col:hover {
    background: rgba(255, 255, 255, 0.09);
}

.value-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 20px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.6));
}

.value-col:hover .value-img {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(10px 10px 15px rgba(0, 0, 0, 1));
}

.value-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    font-family: var(--font-primary);

}

.value-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--color-gray-400);
}

/* Products & Services Styles */
.products-section {
    position: relative;
    z-index: 5;
    background-color: transparent;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.products-container {
    width: 100%;
    max-width: 1280px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
    z-index: 2;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#intro3-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: transform;
}

.products-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.products-badge {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-purple);
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(189, 0, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(189, 0, 255, 0.2);
}

.products-title {
    font-size: clamp(2rem, 2.5vw, 2.8rem);
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -1px;
    margin: 0;
}

.products-subtitle {
    font-size: 16px;
    color: var(--color-gray-400);
    max-width: 700px;
    line-height: 1.6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
    min-height: 420px;
}

.product-card:hover {
    transform: translateY(-10px);
}

.card-purple {
    border: 1px solid rgba(189, 0, 255, 0.3);
    box-shadow: 0 0 30px rgba(189, 0, 255, 0.1);
}

.card-purple.p1 {
    padding-top: 12rem;
    background: url(../assets/img/vincullum_banner_home.png) no-repeat top center;
    background-size: 70%;
    background-color: #0a041a;
}


.card-blue {
    border: 1px solid rgba(0, 162, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.card-blue.p2 {
    padding-top: 12rem;
    background: url(../assets/img/sites_banner_home.png) no-repeat top center;
    background-size: 70%;
    background-color: #090d1e;
}

.card-cyan {
    border: 1px solid rgba(0, 247, 255, 0.2);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.05);
}

.card-cyan.p3 {
    padding-top: 12rem;
    background: url(../assets/img/apps_banner_home.png) no-repeat top center;
    background-size: 70%;
    background-color: #090d1e;
}

.card-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(189, 0, 255, 0.15);
    border: 1px solid rgba(189, 0, 255, 0.3);
    color: #d884ff;
    font-size: 10px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 1px;
}

.product-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 25px;
    margin-top: 10px;
}

.product-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    margin: 15px 0 5px 0;
    text-align: center;
}

.product-category {
    font-size: 14px;
    color: var(--color-white);
    font-weight: 500;
    text-align: center;
    margin: 0 0 20px 0;
}

.product-desc {
    font-size: 13px;
    color: var(--color-gray-400);
    line-height: 1.6;
    margin-bottom: 15px;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
    margin-top: auto;
}

.feature-item {
    font-size: 12px;
    color: var(--color-gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
}

.card-purple .feature-item i {
    color: #d884ff;
}

.card-blue .feature-item i {
    color: #00e5ff;
}

.card-footer {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 15px;
    font-size: 12px;
    color: var(--color-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.products-bottom-banner {
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.banner-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #d884ff;
    flex-shrink: 0;
    border: 1px solid rgba(189, 0, 255, 0.2);
}

.products-bottom-banner p {
    margin: 0;
    font-size: 14px;
    color: var(--color-gray-300);
    line-height: 1.6;
    flex: 1;
}

.products-bottom-banner p strong {
    color: var(--color-white);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 5;
    background-color: transparent;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.contact-container {
    width: 100%;
    max-width: 1280px;
    display: flex;
    gap: 60px;
    align-items: center;
    background: rgba(15, 15, 15, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 80px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
    pointer-events: auto;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

#intro4-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    will-change: transform;
}

.contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-title {
    font-size: clamp(2.5rem, 3vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -1px;
}

.contact-desc {
    font-size: 16px;
    color: var(--color-gray-400);
    line-height: 1.6;
}

.social-spheres {
    display: flex;
    gap: 20px;
    margin-top: 10px;
}

.social-sphere {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(189, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.1), inset 0 0 15px rgba(189, 0, 255, 0.1);
    backdrop-filter: blur(10px);
}

.social-sphere:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.4), inset 0 0 20px rgba(0, 229, 255, 0.2);
    color: #00e5ff;
}

.social-sphere i {
    background: linear-gradient(135deg, #bd00ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.social-sphere:hover i {
    background: none;
    -webkit-text-fill-color: #00e5ff;
}

.contact-form-wrapper {
    flex: 1;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 13px;
    color: var(--color-gray-300);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.form-control {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px 20px;
    color: var(--color-white);
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-purple);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.15);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-submit {
    background: linear-gradient(90deg, #8b5cf6, #bd00ff);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
    box-shadow: 0 10px 20px rgba(189, 0, 255, 0.2);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(189, 0, 255, 0.4);
    background: linear-gradient(90deg, #9d6ff7, #c833ff);
}

@media (max-width: 1150px) {
    .about-card {
        flex-direction: column;
    }

    .about-hero-block {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .products-bottom-banner {
        flex-direction: column;
        border-radius: 20px;
        text-align: center;
    }

    .contact-container {
        flex-direction: column;
        padding: 40px;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .about-values-block {
        grid-template-columns: 1fr 1fr;
    }

    .value-col:nth-child(2) {
        border-right: none;
    }

    .value-col:nth-child(1),
    .value-col:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .about-hero-block {
        flex-direction: column;
        text-align: center;
    }

    .monolith-wrapper {
        margin-right: 0;
        margin-bottom: 30px;
    }

    .about-badge,
    .btn-jornada {
        align-self: center;
    }

    .about-badge::before {
        display: none;
    }
}

@media (max-width: 480px) {
    .about-values-block {
        grid-template-columns: 1fr;
    }

    .value-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .value-col:last-child {
        border-bottom: none;
    }
}

/* Scroll Down Explorer Indicator */
.scroll-explorer {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
    pointer-events: none;
    user-select: none;
}

.scroll-waveform {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: 100px;
    z-index: -1;
    opacity: 0.5;
}

.waveform-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(0, 240, 255, 0.4));
}

.waveform-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: draw-wave 6s linear infinite;
}

@keyframes draw-wave {
    0% {
        stroke-dashoffset: 1000;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -1000;
    }
}

.scroll-mouse-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(4px);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.1), inset 0 0 10px rgba(189, 0, 255, 0.1);
    animation: mouse-glow 4s ease-in-out infinite alternate;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: linear-gradient(to bottom, var(--color-cyan), var(--color-purple));
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scroll-wheel-anim 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    box-shadow: 0 0 6px var(--color-cyan);
}

.scroll-text {
    font-family: var(--font-tech);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--color-gray-400);
    text-transform: uppercase;
    text-align: center;
    background: linear-gradient(90deg, var(--color-gray-400), var(--color-white), var(--color-gray-400));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 3s linear infinite, text-glow 4s ease-in-out infinite alternate;
}

@keyframes scroll-wheel-anim {
    0% {
        transform: translateY(0);
        opacity: 0;
        height: 4px;
    }

    20% {
        opacity: 1;
        height: 8px;
    }

    60% {
        transform: translateY(12px);
        opacity: 0.3;
        height: 6px;
    }

    100% {
        transform: translateY(18px);
        opacity: 0;
        height: 4px;
    }
}

@keyframes mouse-glow {
    0% {
        border-color: rgba(255, 255, 255, 0.35);
        box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
    }

    50% {
        border-color: var(--color-cyan);
        box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
    }

    100% {
        border-color: var(--color-purple);
        box-shadow: 0 0 20px rgba(189, 0, 255, 0.4);
    }
}

@keyframes text-shine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: -200% center;
    }
}

@keyframes text-glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
    }

    50% {
        text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
    }

    100% {
        text-shadow: 0 0 10px rgba(189, 0, 255, 0.3);
    }
}

@media (max-height: 750px),
(max-width: 768px) {
    .scroll-explorer {
        bottom: 20px;
        gap: 8px;
    }

    .scroll-waveform {
        display: none;
    }

    .scroll-mouse-icon {
        width: 20px;
        height: 34px;
    }

    .scroll-wheel {
        top: 5px;
        animation: scroll-wheel-anim-mobile 1.6s cubic-bezier(0.16, 1, 0.3, 1) infinite;
    }

    .scroll-text {
        font-size: 8px;
        letter-spacing: 2px;
    }
}

@keyframes scroll-wheel-anim-mobile {
    0% {
        transform: translateY(0);
        opacity: 0;
        height: 3px;
    }

    20% {
        opacity: 1;
        height: 6px;
    }

    60% {
        transform: translateY(8px);
        opacity: 0.3;
        height: 4px;
    }

    100% {
        transform: translateY(14px);
        opacity: 0;
        height: 3px;
    }
}




/* Animated Words Parallax */
.transition-words {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}

.magic-word {
    position: absolute;
    font-family: var(--font-primary);
    font-weight: 800;
    text-transform: uppercase;
    opacity: 0;
    white-space: nowrap;
}

/* Destaques (1, 2, 3) */
.word-1 {
    font-size: clamp(3rem, 5vw, 6rem);
    color: var(--color-purple);
    left: 15%;
    top: 60%;
    text-shadow: 0 0 20px rgba(189, 0, 255, 0.5);
}

.word-2 {
    font-size: clamp(4rem, 6vw, 7rem);
    color: transparent;
    -webkit-text-stroke: 2px var(--color-cyan);
    right: 15%;
    top: 45%;
    text-shadow: 0 0 30px rgba(0, 240, 255, 0.3);
}

.word-3 {
    font-size: clamp(2.5rem, 4vw, 5rem);
    background: linear-gradient(90deg, #00f0ff, #bd00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    left: 45%;
    transform: translateX(-50%);
    top: 25%;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

/* Menores (4 ao 16) */
.word-4 {
    font-size: 24px;
    color: rgba(255, 255, 255, 0.6);
    left: 5%;
    top: 20%;
}

.word-5 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.3);
    right: 10%;
    top: 15%;
}

.word-6 {
    font-size: 32px;
    color: rgba(255, 255, 255, 0.8);
    left: 30%;
    top: 10%;
}

.word-7 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    right: 35%;
    top: 25%;
}

.word-8 {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.7);
    left: 10%;
    top: 40%;
}

.word-9 {
    font-size: 22px;
    color: rgba(255, 255, 255, 0.5);
    right: 25%;
    top: 35%;
}

.word-10 {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.3);
    left: 40%;
    top: 50%;
}

.word-11 {
    font-size: 36px;
    color: rgba(255, 255, 255, 0.9);
    right: 8%;
    top: 65%;
}

.word-12 {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.5);
    left: 25%;
    top: 70%;
}

.word-13 {
    font-size: 26px;
    color: rgba(255, 255, 255, 0.7);
    right: 40%;
    top: 80%;
}

.word-14 {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    left: 50%;
    top: 85%;
}

.word-15 {
    font-size: 30px;
    color: rgba(255, 255, 255, 0.8);
    left: 12%;
    top: 88%;
}

.word-16 {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.5);
    right: 20%;
    top: 90%;
}


.section-header {
    margin-bottom: 50px;
}

.section-badge {
    font-family: var(--font-tech);
    font-size: 11px;
    font-weight: 700;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 12px;
    display: inline-block;
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 2.8vw, 3rem);
    color: var(--color-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 700;
}

.section-subtitle {
    font-size: 14.5px;
    color: var(--color-gray-600);
    margin-top: 8px;
    letter-spacing: 1px;
}

/* SHARED LAYOUT: PAGE INDICATORS & CONTENT WRAPPERS==========================================================================*/
.page-banner {
    position: relative;
    width: 100%;
    height: 500px;
    margin-top: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
}

.page-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, var(--color-black) 0%, transparent 20%, transparent 80%, var(--color-black) 100%),
        linear-gradient(0deg, var(--color-black) 0%, transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.page-banner-title {
    position: relative;
    z-index: 2;
    font-family: var(--font-headline);
    font-size: 80px;
    font-weight: 700;
    color: var(--color-white);
    text-shadow: 0 0 20px rgba(189, 0, 255, 0.8), 0 0 40px rgba(0, 240, 255, 0.6);
    letter-spacing: 2px;
    text-align: center;
    cursor: default;
}

@media (max-width: 768px) {
    .page-banner {
        height: 350px;
    }

    .page-banner-title {
        font-size: 50px;
    }
}

.indicator-bar {
    width: 100%;
    padding: 60px 0 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 140px;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

.indicator-line {
    width: 60%;
    max-width: 800px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-purple), transparent);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.6);
    margin-bottom: 25px;
    position: relative;
}

.indicator-line::after {
    content: '✨';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-cyan);
    font-size: 14px;
    text-shadow: 0 0 10px var(--color-cyan);
}

.indicator-title {
    font-family: var(--font-headline);
    font-size: clamp(2.2rem, 3.2vw, 3.8rem);
    font-weight: 800;
    letter-spacing: 6px;
    color: var(--color-white);
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 20px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.indicator-rune {
    color: var(--color-cyan);
    text-shadow: 0 0 8px var(--color-cyan);
    font-size: 0.8em;
}

.indicator-subtitle {
    font-family: var(--font-tech);
    font-size: 11px;
    color: var(--color-gray-400);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-top: 8px;
}

.content-wrapper {
    width: 100%;
    max-width: 1280px;
    margin: 20px auto 80px auto;
    padding: 0 40px;
    opacity: 0;
    transform: translateY(30px);
    position: relative;
}

/* PAGE SPECIFIC: QUEM-SOMOS.HTML
   ========================================================================== */
/* --- SECTION: A GUILDA STYLING --- */
.guild-section-container {
    width: 100%;
    max-width: 1280px;
    margin: 80px auto 100px auto;
    padding: 0 40px;
    text-align: center;
}

.guild-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.guild-card {
    background: rgba(10, 5, 20, 0.4);
    border: 1px solid rgba(189, 0, 255, 0.15);
    border-radius: 20px;
    padding: 40px 20px 30px 20px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.guild-card:hover {
    border-color: var(--color-cyan);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2), inset 0 0 15px rgba(0, 240, 255, 0.05);
    transform: translateY(-8px);
}

.guild-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.1), transparent);
    transition: 0.6s;
}

.guild-card:hover::before {
    left: 100%;
}

/* Card corner highlights */
.card-decor {
    position: absolute;
    font-size: 10px;
    color: var(--color-cyan);
    text-shadow: 0 0 8px var(--color-cyan);
    pointer-events: none;
    user-select: none;
}

.card-decor.tl {
    top: 15px;
    left: 15px;
}

.card-decor.tr {
    top: 15px;
    right: 15px;
}

.card-decor.bl {
    bottom: 15px;
    left: 15px;
}

.card-decor.br {
    bottom: 15px;
    right: 15px;
}

/* Magical Avatar in Guild Card */
.guild-avatar-container {
    position: relative;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.guild-axis-h {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.3), rgba(189, 0, 255, 0.5), rgba(0, 240, 255, 0.3), transparent);
    z-index: 1;
    transition: var(--transition-smooth);
}

.guild-card:hover .guild-axis-h {
    background: linear-gradient(90deg, transparent, var(--color-cyan), var(--color-purple), var(--color-cyan), transparent);
    box-shadow: 0 0 10px var(--color-cyan);
}

.guild-crystal {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(15, 15, 15, 0.9);
    border: 1px solid rgba(189, 0, 255, 0.5);
    box-shadow: 0 0 5px rgba(189, 0, 255, 0.3);
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: 2;
    transition: var(--transition-smooth);
}

.guild-card:hover .guild-crystal {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    box-shadow: 0 0 8px var(--color-cyan);
}

.guild-crystal-l {
    left: 15%;
    top: 50%;
}

.guild-crystal-r {
    right: 15%;
    top: 50%;
}

.guild-avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guild-ring-svg {
    position: absolute;
    width: 170px;
    height: 170px;
    animation: rotate-ring 45s linear infinite;
    transform-origin: center;
    pointer-events: none;
    z-index: 1;
    transition: animation-duration 0.3s ease;
}

.guild-card:hover .guild-ring-svg {
    animation-duration: 15s;
}

.guild-ring-text {
    font-family: var(--font-tech);
    font-size: 8px;
    fill: #c084fc;
    letter-spacing: 3.5px;
    text-shadow: 0 0 5px rgba(189, 0, 255, 0.6);
    dominant-baseline: middle;
}

.guild-card:hover .guild-ring-text {
    fill: var(--color-cyan);
    text-shadow: 0 0 8px var(--color-cyan);
}

.guild-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(189, 0, 255, 0.3);
    box-shadow: 0 0 15px rgba(189, 0, 255, 0.2);
    transition: var(--transition-smooth);
}

.guild-card:hover .guild-img {
    border-color: var(--color-cyan);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.4);
    transform: scale(1.05);
}

.guild-info {
    text-align: center;
    margin-top: 10px;
}

.guild-name {
    font-family: var(--font-headline);
    font-size: 20px;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    transition: var(--transition-smooth);
}

.guild-card:hover .guild-name {
    color: var(--color-cyan);
    text-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.guild-title-role {
    font-family: var(--font-tech);
    font-size: 11px;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.btn-inspect {
    background: transparent;
    border: 1px solid rgba(189, 0, 255, 0.3);
    color: var(--color-gray-400);
    padding: 8px 20px;
    border-radius: 20px;
    font-family: var(--font-tech);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.guild-card:hover .btn-inspect {
    border-color: var(--color-cyan);
    color: var(--color-white);
    background: rgba(0, 240, 255, 0.05);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.15);
}

/* --- MTG & RPG Modal Styling --- */
.guild-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 3, 10, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.guild-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.guild-modal-container {
    width: 90%;
    max-width: 820px;
    background: rgba(12, 10, 20, 0.85);
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 50px rgba(0, 240, 255, 0.15), inset 0 0 30px rgba(189, 0, 255, 0.15);
    border-radius: 28px;
    padding: 40px;
    position: relative;
    display: flex;
    gap: 40px;
    transform: scale(0.9);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.guild-modal-overlay.active .guild-modal-container {
    transform: scale(1);
}

.btn-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 240, 255, 0.3);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    z-index: 10;
}

.btn-modal-close:hover {
    background: rgba(0, 240, 255, 0.1);
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transform: rotate(90deg);
}

/* Left Side: MTG Card Design */
.mtg-card-wrapper {
    flex: 0 0 330px;
    perspective: 1000px;
}

.mtg-card {
    width: 350px;
    height: 500px;
    background: #171311;
    border: 10px solid #1a1615;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    padding: 8px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border-image: linear-gradient(135deg, #2d2621, #1a1615) 10;
    box-shadow: inset 0 0 0 1px #d4af37, 0 15px 30px rgba(0, 0, 0, 0.6);
    transform-style: preserve-3d;
}

.mtg-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, #2d2621 0%, #15110f 100%);
    z-index: 1;
}

.mtg-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mtg-header {
    background: linear-gradient(90deg, #51443c, #2b221d);
    border: 1.5px solid #8e7057;
    border-radius: 6px;
    padding: 4px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.mtg-name {
    font-family: var(--font-headline);
    font-size: 13px;
    font-weight: 700;
    color: #f7e7d3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.mtg-mana {
    display: flex;
    gap: 4px;
}

.mana-symbol {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 8px;
    font-weight: bold;
    color: #000;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.mana-symbol.code {
    background: #00f0ff;
    color: #000;
}

.mana-symbol.fire {
    background: #ef4444;
    color: #fff;
}

.mana-symbol.water {
    background: #3b82f6;
    color: #fff;
}

.mana-symbol.earth {
    background: #f59e0b;
    color: #000;
}

.mana-symbol.shadow {
    background: #8b5cf6;
    color: #fff;
}

.mana-symbol.light {
    background: #fef08a;
    color: #000;
}

.mana-symbol.shield {
    background: #9ca3af;
    color: #000;
}

.mtg-art-box {
    width: 100%;
    height: 280px;
    border: 2px solid #8e7057;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    border-radius: 4px;
    position: relative;
}

.mtg-art-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Holographic Shine */
.holographic-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(105deg,
            rgba(255, 255, 255, 0) 30%,
            rgba(0, 240, 255, 0.12) 40%,
            rgba(189, 0, 255, 0.12) 50%,
            rgba(255, 255, 255, 0) 60%);
    background-size: 200% 200%;
    background-position: 100% 100%;
    mix-blend-mode: color-dodge;
    z-index: 3;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.mtg-type-line {
    background: linear-gradient(90deg, #51443c, #2b221d);
    border: 1.5px solid #8e7057;
    border-radius: 6px;
    padding: 3px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.5);
}

.mtg-type {
    font-family: var(--font-headline);
    font-size: 11px;
    font-weight: 700;
    color: #f7e7d3;
    letter-spacing: 0.5px;
}

.mtg-set-symbol {
    color: #d4af37;
    font-size: 10px;
    text-shadow: 0 0 3px rgba(212, 175, 55, 0.5);
}

.mtg-text-box {
    background: rgba(230, 220, 205, 0.08);
    border: 1.5px solid #8e7057;
    border-radius: 6px;
    padding: 8px 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}

.mtg-rules {
    font-size: 11px;
    color: #ebd7c0;
    line-height: 1.4;
    text-align: left;
}

.mtg-flavor {
    font-size: 10px;
    color: #a79788;
    font-style: italic;
    border-top: 1px solid rgba(142, 112, 87, 0.3);
    padding-top: 4px;
    margin-top: auto;
    text-align: left;
}

.mtg-pt-box {
    position: absolute;
    bottom: -1px;
    right: -1px;
    background: #2b221d;
    border: 1.5px solid #8e7057;
    border-radius: 4px 0 4px 0;
    padding: 2px 8px;
    font-family: var(--font-headline);
    font-size: 12px;
    font-weight: bold;
    color: #f7e7d3;
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.5);
}

/* Right Side: RPG character sheet */
.rpg-sheet {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rpg-header {
    border-bottom: 1px solid rgba(0, 240, 255, 0.2);
    padding-bottom: 10px;
    margin-bottom: 20px;
    text-align: left;
}

.rpg-badge {
    font-family: var(--font-tech);
    font-size: 9px;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    display: block;
    margin-bottom: 4px;
}

.rpg-name-title {
    font-family: var(--font-headline);
    font-size: 26px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.rpg-bio {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--color-gray-400);
    text-align: left;
    margin-bottom: 25px;
}

.rpg-skills {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-tech);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.skill-label {
    color: var(--color-gray-400);
}

.skill-value {
    color: var(--color-cyan);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.5);
}

.skill-bar-bg {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.skill-bar-fill {
    height: 100%;
    width: 0%;
    /* Animated via GSAP */
    background: linear-gradient(90deg, var(--color-purple), var(--color-cyan));
    border-radius: 4px;
    box-shadow: 0 0 10px var(--color-cyan);
}

@media (max-width: 820px) {
    .guild-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .guild-modal-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
        padding: 30px;
        height: 90vh;
        overflow-y: auto;
    }

    .mtg-card-wrapper {
        flex: 0 0 auto;
    }
}

@media (max-width: 480px) {
    .guild-grid {
        grid-template-columns: 1fr;
    }

    .guild-modal-container {
        width: 95%;
        padding: 20px;
    }

    .mtg-card {
        width: 290px;
        height: 400px;
        border-width: 8px;
    }

    .mtg-art-box {
        height: 140px;
    }
}

/* Premium Footer */
footer {
    background: rgba(8, 8, 12, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 80px 40px 80px;
    margin-top: 80px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    z-index: 10;
}

.footer-container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-logo img {
    height: 80px;
    width: auto;
    align-self: flex-start;
    filter: drop-shadow(0 0 10px rgba(189, 0, 255, 0.1));
}

.footer-desc {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    max-width: 360px;
}

.footer-center h4,
.footer-right h4 {
    font-family: var(--font-tech);
    font-size: 12px;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-center ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-center ul a {
    text-decoration: none;
    color: var(--color-gray-400);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.footer-center ul a:hover {
    color: var(--color-cyan);
    text-shadow: 0 0 5px rgba(0, 240, 255, 0.2);
    padding-left: 4px;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.social-spheres {
    display: flex;
    gap: 15px;
}

.social-sphere {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(15, 15, 15, 0.6);
    border: 1px solid rgba(189, 0, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-white);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 10px rgba(189, 0, 255, 0.05);
    backdrop-filter: blur(5px);
}

.social-sphere:hover {
    transform: translateY(-5px) scale(1.08);
    border-color: rgba(0, 229, 255, 0.8);
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
    color: #00e5ff;
}

.social-sphere i {
    background: linear-gradient(135deg, #bd00ff, #00e5ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.social-sphere:hover i {
    background: none;
    -webkit-text-fill-color: #00e5ff;
}

.footer-bottom {
    width: 100%;
    max-width: 1280px;
    margin: 60px auto 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-gray-600);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    header {
        padding: 0;
    }

    .header-container {
        padding: 10px 40px;
    }

    nav {
        display: none;
        /* Hide main links on smaller screens for clean layout */
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    footer {
        padding: 60px 40px 30px 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-hero-block {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .monolith-wrapper {
        margin-bottom: 25px;
    }

    .about-values-block {
        grid-template-columns: 1fr 1fr;
    }

    .value-col:nth-child(2) {
        border-right: none;
    }

    .value-col:nth-child(1),
    .value-col:nth-child(2) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 480px) {
    .about-values-block {
        grid-template-columns: 1fr;
    }

    .value-col {
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .value-col:last-child {
        border-bottom: none;
    }
}