/* ============================================
   TheSign Systems — Cinematic Design Layer
   Dramatic, Image-Heavy, Futuristic Theme
   ============================================ */

/* --- Cinematic Hero --- */
.cinematic-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 120px 24px 80px;
}

.cinematic-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    filter: brightness(0.35) saturate(1.2);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(5, 11, 26, 0.7) 0%, rgba(5, 11, 26, 0.3) 40%, rgba(5, 11, 26, 0.6) 70%, rgba(5, 11, 26, 0.95) 100%),
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
}

/* Logo */
.hero-logo-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 32px;
}

.hero-logo-svg {
    width: 180px;
    height: 180px;
    animation: floatLogo 6s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(0, 229, 255, 0.3)) drop-shadow(0 0 60px rgba(0, 100, 255, 0.15));
}

.hero-logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.12) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatLogo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 1;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-tagline {
    font-size: 0.85rem;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 400;
}

.cinematic-h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.accent-glow {
    color: #00e5ff;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.4), 0 0 40px rgba(0, 229, 255, 0.2);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 560px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Cinematic Buttons --- */
.btn-cinematic-primary {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(135deg, #00e5ff 0%, #0088cc 100%);
    color: #050b1a;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.25), 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-cinematic-primary:hover {
    background: linear-gradient(135deg, #33ecff 0%, #00aaee 100%);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.45), 0 6px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.btn-cinematic-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cinematic-secondary:hover {
    border-color: rgba(0, 229, 255, 0.5);
    color: #00e5ff;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.15);
    transform: translateY(-2px);
}

/* --- Feature Cards Section --- */
.features-section {
    padding: 100px 24px;
    position: relative;
    background: linear-gradient(180deg, #050b1a 0%, #0a1628 50%, #050b1a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card-cinematic {
    background: rgba(10, 20, 40, 0.7);
    border: 1px solid rgba(0, 229, 255, 0.08);
    border-radius: 12px;
    padding: 40px 28px 32px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.feature-card-cinematic::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00e5ff, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-cinematic:hover::before {
    opacity: 1;
}

.feature-card-cinematic:hover {
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(0, 229, 255, 0.06);
}

.feature-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1) 0%, rgba(0, 100, 200, 0.06) 100%);
    border: 1px solid rgba(0, 229, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.08);
}

.feature-card-cinematic:hover .feature-icon-circle {
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.2);
    border-color: rgba(0, 229, 255, 0.4);
}

.feature-card-cinematic h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.feature-card-cinematic p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-link {
    display: inline-block;
    color: #00e5ff;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.feature-link span {
    transition: transform 0.3s ease;
    display: inline-block;
}

.feature-link:hover {
    color: #33ecff;
}

.feature-link:hover span {
    transform: translateX(4px);
}

/* --- Pioneer Section --- */
.pioneer-section {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
    min-height: 500px;
}

.pioneer-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.pioneer-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) saturate(1.3) hue-rotate(10deg);
}

.pioneer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 11, 26, 0.95) 0%, rgba(5, 11, 26, 0.7) 50%, rgba(5, 11, 26, 0.4) 100%),
        linear-gradient(180deg, rgba(5, 11, 26, 0.3) 0%, rgba(5, 11, 26, 0.5) 100%);
}

.pioneer-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.pioneer-heading {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #fff;
}

.pioneer-text p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 500px;
}

.pioneer-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.pioneer-img {
    width: 100%;
    max-width: 450px;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(0, 229, 255, 0.08);
}

.pioneer-img-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Stats Section --- */
.stats-section-cinematic {
    padding: 80px 24px;
    background: linear-gradient(180deg, #050b1a 0%, #0a1220 50%, #050b1a 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.05);
    border-bottom: 1px solid rgba(0, 229, 255, 0.05);
}

.stats-grid-cinematic {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.stat-cinematic {
    padding: 24px;
}

.stat-value-cinematic {
    font-size: 2.5rem;
    font-weight: 800;
    color: #00e5ff;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.stat-label-cinematic {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* --- Tech Showcase --- */
.tech-showcase {
    padding: 100px 24px;
    background: #050b1a;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.tech-card {
    background: rgba(10, 20, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 32px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00e5ff, #4060ff);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-card:hover {
    border-color: rgba(0, 229, 255, 0.15);
    transform: translateY(-4px);
    background: rgba(10, 20, 40, 0.8);
}

.tech-card:hover::after {
    opacity: 1;
}

.tech-card-number {
    font-size: 2rem;
    font-weight: 900;
    color: rgba(0, 229, 255, 0.15);
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
}

.tech-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.tech-card p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
}

/* --- CTA Cinematic --- */
.cta-cinematic {
    position: relative;
    padding: 120px 24px;
    text-align: center;
    overflow: hidden;
}

.cta-cinematic-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.2) saturate(1.5);
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0, 229, 255, 0.06) 0%, transparent 70%),
        linear-gradient(180deg, rgba(5, 11, 26, 0.85) 0%, rgba(5, 11, 26, 0.7) 50%, rgba(5, 11, 26, 0.9) 100%);
}

/* --- Logo Styling Updates --- */
.logo-text {
    font-weight: 700;
    font-size: 1.1rem;
    color: #fff;
    letter-spacing: 0.02em;
}

.logo-sub {
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    display: block;
    color: rgba(255, 255, 255, 0.4);
    margin-top: -2px;
    text-transform: uppercase;
}

.nav-logo .logo-icon {
    background: linear-gradient(135deg, #00e5ff 0%, #0088cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.4rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pioneer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pioneer-text p {
        margin: 0 auto;
    }

    .stats-grid-cinematic {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cinematic-hero {
        padding: 140px 20px 80px;
    }

    .hero-logo-svg {
        width: 130px;
        height: 130px;
    }

    .cinematic-h1 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pioneer-heading {
        font-size: 1.8rem;
    }

    .stats-grid-cinematic {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .stat-value-cinematic {
        font-size: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .stats-grid-cinematic {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   INNER PAGE CINEMATIC HEROES
   ============================================ */
.page-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #050b1a 0%, #0a1628 60%, #050b1a 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 50% 50% at 50% 30%, rgba(0, 229, 255, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 30% 40% at 80% 60%, rgba(64, 96, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero h1 {
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

/* ============================================
   FOOTER CINEMATIC THEME
   ============================================ */
.footer {
    background: linear-gradient(180deg, #050b1a 0%, #030812 100%);
    border-top: 1px solid rgba(0, 229, 255, 0.05);
}

/* ============================================
   CINEMATIC NAV-LOGO OVERRIDE
   ============================================ */
.nav-logo {
    gap: 8px;
}

.nav-logo .logo-icon {
    width: auto;
    height: auto;
    background: none;
    border-radius: 0;
    display: inline;
}