
:root {
    --primary: #7C3AED;
    --primary-light: #8B5CF6;
    --primary-dark: #6D28D9;
    --primary-gradient: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    --secondary: #00C875;
    --secondary-gradient: linear-gradient(135deg, #00C875 0%, #23E894 100%);
    --accent: #FF3D57;
    --accent-gradient: linear-gradient(135deg, #FF3D57 0%, #FF6C7C 100%);
    --tertiary: #00CED1;
    --tertiary-gradient: linear-gradient(135deg, #00CED1 0%, #40E0E0 100%);
    --dark-blue: #0A1A2F;
    --gray-100: #F6F7FB;
    --gray-200: #E9EBF0;
    --gray-300: #D0D4E0;
    --gray-800: #323338;
    --gray-900: #1F1F1F;
    --white: #FFFFFF;
    --black: #000000;
    --glass-bg: rgba(255, 255, 255, 0.06);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 32px rgba(0,0,0,0.1);
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.3);
    --shadow-glow-secondary: 0 0 20px rgba(0, 200, 117, 0.2);
    --shadow-glow-accent: 0 0 20px rgba(255, 61, 87, 0.2);
    --shadow-glow-tertiary: 0 0 20px rgba(0, 206, 209, 0.2);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-pill: 9999px;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --bezier-bounce: cubic-bezier(0.4, 1.8, 0.5, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--gray-800);
    background: var(--white);
    scroll-behavior: smooth;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection {
    background: var(--primary-light);
    color: white;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.section-spacing {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-spacing {
    padding: 60px 0;
    }
}

/* Header & Navigation - Updated to match main site */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    padding: 0.75rem 5%;
    box-shadow: var(--shadow-md);
    background: rgba(255, 255, 255, 0.98);
}

.logo {
    height: 72px;
    width: auto;
    display: block;
}

nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
}

nav a:hover {
    color: var(--primary);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary-gradient);
    transition: var(--transition);
}

nav a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.recruiter-login {
    background: transparent;
    color: var(--primary);
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    border: 2px solid var(--primary);
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.recruiter-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.cta-button {
    background: var(--primary-gradient);
    color: white;
    padding: 0.65rem 1.25rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-glow);
    font-size: 0.95rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section - Press style */
.hero {
    position: relative;
    padding: 10rem 5% 4rem;
    background: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(124, 58, 237, 0.08);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-label i {
    margin-right: 0.5rem;
}

.hero h1 {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.hero-highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: rgba(124, 58, 237, 0.2);
    z-index: -1;
}

.hero p {
    font-size: 1.2rem;
    color: var(--gray-800);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Press Articles Section - Enhanced design */
.press-section {
    padding: 80px 5%;
    background: var(--gray-100);
}

.section-title {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--white);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-pill);
}

.section-title p {
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--gray-800);
    line-height: 1.65;
}

/* Press Articles Grid - New modern design */
.press-container {
    max-width: 1200px;
    margin: 0 auto;
}

.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.press-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: var(--shadow-sm);
    cursor: pointer;
}

.press-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.press-card-header {
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--gray-100) 0%, rgba(124, 58, 237, 0.05) 100%);
    position: relative;
}

.press-logo-wrapper {
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.press-logo-img {
    max-height: 100%;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.press-card:hover .press-logo-img {
    filter: grayscale(0);
    opacity: 1;
}

.press-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-800);
    opacity: 0.7;
}

.press-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 600;
}

.press-card-content {
    padding: 0 2rem 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.press-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.4;
    flex: 1;
}

.press-excerpt {
    font-size: 0.95rem;
    color: var(--gray-800);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.press-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.press-link:hover {
    gap: 0.75rem;
}

/* Featured Press - Enhanced design */
.featured-press {
    background: linear-gradient(135deg, #7C3AED 0%, #9F7AEA 100%);
    color: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
    grid-column: 1 / -1;
}

.featured-press::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.featured-press::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.featured-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.featured-label {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.featured-label i {
    margin-right: 0.5rem;
    color: #FED7AA;
}

.featured-content h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-content p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 800px;
}

.featured-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.featured-publication {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1.05rem;
}

.featured-publication img {
    height: 24px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.featured-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    font-size: 0.95rem;
}

.featured-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    gap: 0.75rem;
}

/* Media Kit Section - Enhanced */
.media-kit {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
    position: relative;
}

.media-kit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
    z-index: 0;
}

.media-kit-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.media-kit h2 {
    font-size: 2.25rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
    font-weight: 700;
}

.media-kit p {
    font-size: 1.125rem;
    color: var(--gray-800);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.media-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.media-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.media-button.primary {
    background: var(--primary-gradient);
    color: white;
    box-shadow: var(--shadow-glow);
}

.media-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.media-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.media-button.secondary:hover {
    background: var(--primary);
    color: white;
}

/* Footer - Updated to match main site */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 3.5rem 5% 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-column h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.875rem;
    color: var(--gray-300);
}

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 0.875rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .press-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    header {
    padding: 0.875rem 1rem;
    }

    header.scrolled {
    padding: 0.75rem 1rem;
    }

    .logo {
    height: 60px;
    }

    .nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: auto;
    }
    
    .recruiter-login {
    display: none;
    }

    .cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.875rem;
    }

    .cta-button i {
    display: none;
    }

    .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
    }
    
    .nav-links.active {
    display: flex;
    }
    
    .menu-toggle {
    display: flex;
    margin-left: 0.75rem;
    }
    
    .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
    opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero Mobile */
    .hero {
    padding: 7rem 1.5rem 3rem;
    }
    
    .hero h1 {
    font-size: 2.25rem;
    }
    
    .hero p {
    font-size: 1.05rem;
    }
    
    /* Press Section Mobile */
    .press-section {
    padding: 60px 1.5rem;
    }
    
    .section-title h2 {
    font-size: 2rem;
    }
    
    .press-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    }
    
    .press-card-header {
    padding: 1.5rem 1.5rem 1rem;
    }
    
    .press-card-content {
    padding: 0 1.5rem 1.5rem;
    }
    
    .featured-press {
    padding: 2rem;
    }
    
    .featured-content h3 {
    font-size: 1.75rem;
    }
    
    .featured-content p {
    font-size: 1rem;
    }
    
    .featured-meta {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
    }
    
    /* Media Kit Mobile */
    .media-kit {
    padding: 60px 1.5rem;
    }
    
    .media-kit h2 {
    font-size: 1.875rem;
    }
    
    .media-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    }
    
    .media-button {
    width: 100%;
    justify-content: center;
    }
    
    /* Footer Mobile */
    .footer-bottom {
    flex-direction: column;
    gap: 1.25rem;
    text-align: center;
    }
}

@media (max-width: 480px) {
    header {
    padding: 0.75rem 0.75rem;
    }
    
    .logo {
    height: 60px;
    }

    .cta-button {
    padding: 0.5rem 0.875rem;
    font-size: 0.8rem;
    }
    
    .hero h1 {
    font-size: 1.875rem;
    }
    
    .hero p {
    font-size: 0.95rem;
    }
    
    .section-title h2 {
    font-size: 1.75rem;
    }
}