/* ==========================================================================
   SKYFALL V3 - ABOUT PAGE STYLES
   Exact match from V1 about.css + theme-orange.css + protocol.css
   ========================================================================== */

:root {
    --about-primary: #EA580C;
    --about-dark: #030304;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.about-hero {
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, rgba(120, 40, 20, 0.2) 0%, transparent 70%);
}

.about-grid-bg {
    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;
    mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 80%);
}

/* ==========================================================================
   SWIPER CAROUSEL (Inline styles from V1)
   ========================================================================== */
.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.swiper-pagination-bullet-active {
    background: #EA580C !important;
}

/* ==========================================================================
   HIGHLIGHT BOX (so-text-highlight-box from theme-orange.css)
   ========================================================================== */
.about-highlight-box {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-left: 2px solid var(--about-primary);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    margin: 2rem 0;
}

/* ==========================================================================
   VISION QUOTE (from V1 about.css)
   ========================================================================== */
.about-vision-quote {
    position: relative;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-vision-quote::before {
    content: '"';
    position: absolute;
    top: -25px;
    left: -35px;
    font-size: 5rem;
    color: rgba(234, 88, 12, 0.15);
    font-family: Georgia, serif;
    font-weight: bold;
    line-height: 1;
}

.about-vision-quote strong {
    color: #ffffff;
}

/* ==========================================================================
   TIMELINE (from V1 about.css)
   ========================================================================== */
.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 3rem;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.timeline-item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -11px;
    top: 0;
    width: 20px;
    height: 20px;
    background: #030304;
    border: 2px solid var(--about-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--about-primary);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--about-primary);
    color: white;
    box-shadow: 0 0 15px rgba(234, 88, 12, 0.4);
}

/* Timeline item year/title/desc for JS-loaded items */
.timeline-item-year {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #EA580C;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.timeline-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-item-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Timeline connector line for V3 module style */
#timeline-items-container {
    position: relative;
}

#timeline-items-container::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(234, 88, 12, 0.3), transparent);
}

/* ==========================================================================
   VALUE CARDS (from V1 about.css)
   ========================================================================== */
.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(234, 88, 12, 0.3);
    transform: translateY(-5px);
}

/* ==========================================================================
   3D PARALLAX CONTAINER (from V1 about.css)
   ========================================================================== */
.about-3d-wrapper {
    perspective: 800px;
    perspective-origin: center center;
}

/* All cards with data-3d-card attribute or specific IDs get 3D transform */
[data-3d-card],
#about-3d-card,
#about-swiper-3d,
#about-founder-3d {
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
}

#about-3d-card .hud-corner,
#about-3d-card .hud-shine,
#about-3d-card .hud-tech-line-v,
#about-3d-card .hud-tech-line-h,
[data-3d-card] .hud-corner,
[data-3d-card] .hud-shine,
[data-3d-card] .hud-tech-line-v,
[data-3d-card] .hud-tech-line-h {
    transform: translateZ(0px);
}

#about-3d-logo {
    transform: translateZ(60px);
    transition: transform 0.1s ease-out;
}

/* ==========================================================================
   SCANLINE ANIMATION (from V1 about.css - exact match)
   ========================================================================== */
.scanline,
.about-scanline {
    top: 0;
    animation: scanloop 3s linear infinite;
    will-change: transform;
}

@keyframes scanloop {
    0% {
        transform: translateY(0%);
        top: 0;
    }
    50% {
        transform: translateY(400px);
        top: 0;
    }
    100% {
        transform: translateY(0%);
        top: 0;
    }
}

/* ==========================================================================
   CTA GLOW BACKGROUND (so-bg-glow-cta from theme-orange.css)
   ========================================================================== */
.sf-bg-glow-cta {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(120, 40, 20, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
    .about-hero {
        padding-top: 120px;
        min-height: auto;
    }

    #timeline-items-container::before {
        left: -10px;
    }

    .timeline-item::before {
        left: -15px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .about-vision-quote {
        padding-left: 1rem;
        font-size: 1rem;
    }

    .about-vision-quote::before {
        left: -20px;
        font-size: 3rem;
    }

    .about-3d-wrapper {
        height: 350px;
    }

    #about-3d-card {
        width: 220px;
        height: 320px;
    }
}
