/* Press Release Page Styles - Premium Dark UI Design */

.press-release-hero {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.press-release-hero-bg {
    position: absolute;
    inset: 0;
}

/* Premium Gradient Meshes */
.press-release-gradient-mesh-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 40rem;
    height: 40rem;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.4), rgba(147, 51, 234, 0.3), rgba(59, 130, 246, 0.2));
    border-radius: 50%;
    filter: blur(5rem);
    animation: floatPressRelease1 15s ease-in-out infinite;
    opacity: 0.8;
}

.press-release-gradient-mesh-2 {
    position: absolute;
    bottom: -15%;
    right: -5%;
    width: 25rem;
    height: 25rem;
    background: linear-gradient(45deg, rgba(99, 102, 241, 0.2), rgba(6, 182, 212, 0.25));
    border-radius: 50%;
    filter: blur(3.5rem);
    animation: floatPressRelease2 15s ease-in-out infinite;
}

.press-release-gradient-mesh-3 {
    position: absolute;
    top: 30%;
    right: 20%;
    width: 18rem;
    height: 18rem;
    background: linear-gradient(225deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
    border-radius: 50%;
    filter: blur(2.5rem);
    animation: floatPressRelease3 10s ease-in-out infinite;
}

@keyframes floatPressRelease1 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    33% { transform: translate(120px, -80px) scale(1.1) rotate(120deg); }
    66% { transform: translate(-60px, 100px) scale(0.9) rotate(240deg); }
}

@keyframes floatPressRelease2 {
    0%, 100% { transform: translate(0, 0) scale(1.1) rotate(0deg); }
    50% { transform: translate(-100px, 80px) scale(0.8) rotate(180deg); }
}

@keyframes floatPressRelease3 {
    0%, 100% { transform: translate(0, 0) scale(1) rotate(0deg); }
    25% { transform: translate(50px, -30px) scale(1.2) rotate(90deg); }
    75% { transform: translate(-40px, 60px) scale(0.9) rotate(270deg); }
}

/* Sophisticated Grid Pattern */
.press-release-animated-grid {
    position: absolute;
    inset: 0;
    opacity: 0.08;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.4) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.4) 1px, transparent 1px),
        linear-gradient(rgba(147, 51, 234, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(147, 51, 234, 0.2) 1px, transparent 1px);
    background-size: 60px 60px, 60px 60px, 120px 120px, 120px 120px;
    animation: gridMovePressRelease 20s linear infinite;
}

@keyframes gridMovePressRelease {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 60px 60px, 60px 60px, 120px 120px, 120px 120px; }
}

/* Floating Particles */
.press-release-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Premium Floating Orbs */
.press-release-particles::before {
    content: '';
    position: absolute;
    top: 25%;
    right: 20%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.8), transparent);
    border-radius: 50%;
    animation: orbitFloatPR1 22s linear infinite;
}

.press-release-particles::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 25%;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.7), transparent);
    border-radius: 50%;
    animation: orbitFloatPR2 18s linear infinite reverse;
}

@keyframes orbitFloatPR1 {
    0% { transform: rotate(0deg) translateX(250px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(250px) rotate(-360deg); }
}

@keyframes orbitFloatPR2 {
    0% { transform: rotate(0deg) translateX(180px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(180px) rotate(-360deg); }
}

.press-release-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloatPR 8s linear infinite;
}

.press-release-particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.press-release-particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 10s; }
.press-release-particle:nth-child(3) { left: 30%; animation-delay: 4s; animation-duration: 14s; }
.press-release-particle:nth-child(4) { left: 40%; animation-delay: 1s; animation-duration: 11s; }
.press-release-particle:nth-child(5) { left: 50%; animation-delay: 3s; animation-duration: 13s; }

@keyframes particleFloatPR {
    0% { 
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% { 
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Hero Grid Layout */
.press-release-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (min-width: 1024px) {
    .press-release-hero-grid {
        grid-template-columns: 1fr;
        gap: 6rem;
    }
}

/* Hero Content Styling */
.press-release-hero-content {
    text-align: center;
}

.press-release-hero-badge {
    position: relative;
    display: inline-flex;
    margin-bottom: 2rem;
    animation: badgeFloatPR 3s ease-in-out infinite;
}

.badge-glow {
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(147, 51, 234, 0.3));
    border-radius: 2rem;
    filter: blur(8px);
    z-index: -1;
}

.badge-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

@keyframes badgeFloatPR {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

.press-release-hero-text {
    margin-bottom: 3rem;
}

.press-release-main-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #fce7f3 40%, #f9a8d4 70%, rgba(255, 255, 255, 0.9) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Inter', sans-serif;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    position: relative;
}

@media (min-width: 640px) {
    .press-release-main-title {
        font-size: 3.75rem;
    }
}

@media (min-width: 1024px) {
    .press-release-main-title {
        font-size: 4.5rem;
    }
}

.title-line {
    display: inline-block;
    animation: titleRevealPR 1.5s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

@keyframes titleRevealPR {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.press-release-hero-subtitle {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    max-width: 1000px;
    margin: 0 auto;
    animation: subtitleRevealPR 1.5s ease-out 0.3s forwards;
    opacity: 0;
    transform: translateY(30px);
    font-family: 'Inter', sans-serif;
}

@keyframes subtitleRevealPR {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.press-release-hero-cta {
    animation: ctaRevealPR 1.5s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes ctaRevealPR {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.press-release-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
    color: white;
    text-decoration: none;
    border-radius: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 15px 35px rgba(236, 72, 153, 0.4),
        0 5px 15px rgba(139, 92, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.press-release-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent, rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-release-cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(236, 72, 153, 0.5),
        0 10px 25px rgba(139, 92, 246, 0.4),
        0 0 40px rgba(59, 130, 246, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    text-decoration: none;
    color: white;
}

.press-release-cta-btn:hover::before {
    opacity: 1;
}

/* Press Articles Section */
.press-articles-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #0d1117 50%, #0a0a0a 100%);
    position: relative;
}

.press-articles-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.press-articles-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 1.5rem;
    color: #3b82f6;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    animation: pulsePR 2s infinite;
}

@keyframes pulsePR {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.section-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Press Articles Grid */
.press-articles-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .press-articles-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Press Article Card */
.press-article-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(30px);
    position: relative;
    animation: cardSlideUpPR 1s ease-out forwards;
    opacity: 0;
    transform: translateY(60px) rotateX(10deg);
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;
    padding: 2rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.press-article-card:nth-child(1) { animation-delay: 0.1s; }
.press-article-card:nth-child(2) { animation-delay: 0.2s; }
.press-article-card:nth-child(3) { animation-delay: 0.3s; }
.press-article-card:nth-child(4) { animation-delay: 0.4s; }
.press-article-card:nth-child(5) { animation-delay: 0.5s; }

@media (max-width: 768px) {
    .press-article-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
}

@keyframes cardSlideUpPR {
    0% {
        opacity: 0;
        transform: translateY(60px) rotateX(10deg) scale(0.95);
    }
    60% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(5deg) scale(1.02);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

.press-article-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.press-article-card:hover {
    transform: translateY(-20px) rotateX(0deg) scale(1.02);
    border-color: rgba(236, 72, 153, 0.4);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(236, 72, 153, 0.2),
        0 0 60px rgba(236, 72, 153, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
}

.press-article-card:hover::before {
    opacity: 1;
}

/* Press Article Image */
.press-article-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: rgba(255, 255, 255, 0.05);
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.85) contrast(1.15) saturate(1.1);
}

.press-article-card:hover .article-img {
    transform: scale(1.12) rotate(-1deg);
    filter: brightness(1.05) contrast(1.3) saturate(1.2);
}

.article-overlay {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.article-badge {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    border-radius: 50%;
    font-size: 1.2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Press Article Content */
.press-article-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.article-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.article-excerpt {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    margin: 0.5rem 0;
}

.article-source {
    color: #3b82f6;
    font-weight: 500;
}

.article-dot {
    color: rgba(255, 255, 255, 0.3);
}

.article-date {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3b82f6;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.article-link:hover {
    color: #8b5cf6;
    text-decoration: none;
    transform: translateX(4px);
}

.article-link svg {
    transition: transform 0.3s ease;
}

.article-link:hover svg {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .press-release-main-title {
        font-size: 3rem;
    }
    
    .press-release-hero-subtitle {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .press-release-hero {
        min-height: 70vh;
    }
    
    .press-release-hero-grid {
        padding: 0 1rem;
    }
    
    .press-release-main-title {
        font-size: 2.5rem;
    }
    
    .press-release-hero-subtitle {
        font-size: 1.25rem;
    }
    
    .press-articles-container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .article-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .press-release-main-title {
        font-size: 2rem;
    }
    
    .press-release-cta-btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.5rem;
    }
}