/* ============================================
   Phoenix Venture Partners - Main Stylesheet
   Optimized for Performance & SEO
   ============================================ */

/* CSS Variables - PVP Brand Colors */
:root {
    --pvp-primary: #0052D4;
    --pvp-primary-dark: #003d9e;
    --pvp-primary-light: #1a6fff;
    --pvp-secondary: #00C6FF;
    --pvp-accent: #FF6B35;
    --pvp-white: #FFFFFF;
    --pvp-black: #0a0a0a;
    --pvp-gray-100: #f8f9fa;
    --pvp-gray-200: #e9ecef;
    --pvp-gray-300: #dee2e6;
    --pvp-gray-400: #adb5bd;
    --pvp-gray-500: #6c757d;
    --pvp-gray-600: #495057;
    --pvp-gray-700: #343a40;
    --pvp-gray-800: #212529;
    --pvp-gray-900: #1a1d20;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max-width: 1280px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--pvp-gray-700);
    background-color: var(--pvp-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-normal);
}

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--pvp-gray-900);
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--pvp-gray-600);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.container-narrow {
    max-width: 960px;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo svg {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pvp-primary);
}

/* Navigation */
.nav-desktop {
    display: none;
}

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

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pvp-gray-700);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pvp-primary);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--pvp-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--pvp-primary);
    color: var(--pvp-white) !important;
    padding: 0.625rem 1.25rem;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition-normal);
}

.nav-cta:hover {
    background: var(--pvp-primary-dark);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--pvp-gray-800);
    transition: var(--transition-normal);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--pvp-white);
    box-shadow: var(--shadow-xl);
    padding: 100px 2rem 2rem;
    transition: var(--transition-slow);
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.nav-mobile .nav-link {
    font-size: 1.125rem;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-dark) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.hero-logo {
    width: 180px;
    height: 180px;
    margin: 0 auto 2rem;
}

.hero-logo svg {
    width: 100%;
    height: 100%;
}

.hero-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--pvp-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: var(--pvp-white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pvp-white);
    color: var(--pvp-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-lg);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: var(--pvp-primary-dark);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.7);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.section {
    padding: var(--section-padding) 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--pvp-primary);
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--pvp-gray-600);
}

/* About Section */
.about-section {
    background: var(--pvp-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h3 {
    color: var(--pvp-primary);
    margin-bottom: 1.5rem;
}

.about-content p {
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--pvp-gray-100);
    border-radius: 12px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--pvp-primary);
    display: block;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--pvp-gray-500);
    margin-top: 0.5rem;
}

/* Investment Approach */
.approach-section {
    background: var(--pvp-gray-100);
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.approach-card {
    background: var(--pvp-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.approach-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.approach-icon svg {
    width: 28px;
    height: 28px;
    color: var(--pvp-white);
}

.approach-card h4 {
    margin-bottom: 1rem;
}

.approach-card p {
    color: var(--pvp-gray-600);
    font-size: 0.9375rem;
}

/* Funds Section */
.funds-section {
    background: var(--pvp-white);
}

.fund-card {
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-dark) 100%);
    border-radius: 24px;
    padding: 4rem;
    color: var(--pvp-white);
    position: relative;
    overflow: hidden;
}

.fund-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.fund-header {
    margin-bottom: 2rem;
}

.fund-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.fund-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--pvp-white);
}

.fund-size {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--pvp-white);
    margin-bottom: 0.5rem;
}

.fund-vintage {
    font-size: 1rem;
    opacity: 0.8;
}

.fund-description {
    font-size: 1rem;
    line-height: 1.8;
    opacity: 0.9;
    max-width: 600px;
}

.fund-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--pvp-white);
    color: var(--pvp-primary);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 2rem;
    transition: var(--transition-normal);
}

.fund-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Investment Thesis */
.thesis-section {
    background: var(--pvp-gray-100);
}

.thesis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.thesis-item {
    background: var(--pvp-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
}

.thesis-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.thesis-item svg {
    width: 40px;
    height: 40px;
    color: var(--pvp-primary);
    margin-bottom: 1rem;
}

.thesis-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.thesis-item p {
    font-size: 0.875rem;
    color: var(--pvp-gray-500);
}

/* Team Section */
.team-section {
    background: var(--pvp-white);
}

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

.team-card {
    background: var(--pvp-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.team-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.team-image svg {
    width: 100px;
    height: 100px;
    color: rgba(255, 255, 255, 0.3);
}

.team-info {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.9375rem;
    color: var(--pvp-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9375rem;
    color: var(--pvp-gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--pvp-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.team-social a:hover {
    background: var(--pvp-primary);
    color: var(--pvp-white);
}

.team-social svg {
    width: 18px;
    height: 18px;
}

/* Large Founder Profiles (as seen on original website) */
.founders-section {
    background: var(--pvp-white);
    padding: var(--section-padding) 0;
}

.founder-profile {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 6rem;
    padding-bottom: 6rem;
    border-bottom: 1px solid var(--pvp-gray-200);
}

.founder-profile:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.founder-profile:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.founder-profile:nth-child(even) .founder-image-wrapper {
    order: 2;
}

.founder-profile:nth-child(even) .founder-content {
    order: 1;
}

.founder-image-wrapper {
    position: relative;
}

.founder-image {
    width: 100%;
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-dark) 100%);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.founder-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-image-placeholder {
    width: 60%;
    height: 60%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.founder-image-placeholder svg {
    width: 100%;
    height: 100%;
    color: rgba(255, 255, 255, 0.4);
}

.founder-content {
    padding-top: 1rem;
}

.founder-name {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--pvp-gray-900);
    margin-bottom: 0.5rem;
}

.founder-role {
    font-size: 1.125rem;
    color: var(--pvp-primary);
    font-weight: 600;
    margin-bottom: 2rem;
}

.founder-bio {
    font-size: 1.0625rem;
    line-height: 1.9;
    color: var(--pvp-gray-600);
    margin-bottom: 2rem;
}

.founder-bio p {
    margin-bottom: 1.5rem;
}

.founder-social {
    display: flex;
    gap: 1rem;
}

.founder-social a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--pvp-gray-100);
    border-radius: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--pvp-gray-700);
    transition: var(--transition-normal);
}

.founder-social a:hover {
    background: var(--pvp-primary);
    color: var(--pvp-white);
}

.founder-social svg {
    width: 18px;
    height: 18px;
}

/* Homepage Founders Preview */
.founders-preview-section {
    background: var(--pvp-gray-100);
    padding: var(--section-padding) 0;
}

.founders-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.founder-preview-card {
    background: var(--pvp-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.founder-preview-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.founder-preview-image {
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.founder-preview-image svg {
    width: 50%;
    height: 50%;
    color: rgba(255, 255, 255, 0.3);
}

.founder-preview-info {
    padding: 1.5rem;
    text-align: center;
}

.founder-preview-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pvp-gray-900);
    margin-bottom: 0.25rem;
}

.founder-preview-role {
    font-size: 0.875rem;
    color: var(--pvp-primary);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .founder-profile,
    .founder-profile:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-profile:nth-child(even) .founder-image-wrapper,
    .founder-profile:nth-child(even) .founder-content {
        order: unset;
    }
    
    .founder-image {
        aspect-ratio: 16/9;
        max-height: 400px;
    }
    
    .founders-preview-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .founder-profile {
        margin-bottom: 4rem;
        padding-bottom: 4rem;
    }
    
    .founder-name {
        font-size: 1.5rem;
    }
    
    .founder-role {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-bio {
        font-size: 1rem;
    }
}

/* Ecosystem Section */
.ecosystem-section {
    background: var(--pvp-gray-100);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.ecosystem-card {
    background: var(--pvp-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-normal);
}

.ecosystem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.ecosystem-logo {
    width: 80px;
    height: 80px;
    background: var(--pvp-gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.ecosystem-logo svg {
    width: 40px;
    height: 40px;
    color: var(--pvp-primary);
}

.ecosystem-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.ecosystem-card p {
    font-size: 0.875rem;
    color: var(--pvp-gray-500);
}

/* Media Section */
.media-section {
    background: var(--pvp-white);
}

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

.media-card {
    background: var(--pvp-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--pvp-gray-200);
    transition: var(--transition-normal);
}

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

.media-date {
    display: inline-block;
    background: var(--pvp-primary);
    color: var(--pvp-white);
    padding: 0.5rem 1rem;
    border-radius: 0 0 8px 0;
    font-size: 0.875rem;
    font-weight: 600;
}

.media-content {
    padding: 1.5rem;
}

.media-source {
    font-size: 0.875rem;
    color: var(--pvp-primary);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.media-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.media-excerpt {
    font-size: 0.9375rem;
    color: var(--pvp-gray-600);
    margin-bottom: 1rem;
}

.media-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--pvp-primary);
    font-weight: 600;
    font-size: 0.9375rem;
}

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

/* Contact Section */
.contact-section {
    background: var(--pvp-gray-100);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    color: var(--pvp-primary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--pvp-gray-500);
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    font-size: 1rem;
    color: var(--pvp-gray-700);
}

.contact-item a:hover {
    color: var(--pvp-primary);
}

.contact-form {
    background: var(--pvp-white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pvp-gray-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--pvp-gray-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-normal);
    background: var(--pvp-white);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--pvp-primary);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: var(--pvp-primary);
    color: var(--pvp-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition-normal);
    width: 100%;
}

.btn-primary:hover {
    background: var(--pvp-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--pvp-gray-900);
    color: var(--pvp-white);
    padding: 4rem 0 2rem;
}

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

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-logo svg {
    width: 40px;
    height: 40px;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-brand p {
    color: var(--pvp-gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.footer-links h4 {
    color: var(--pvp-white);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--pvp-gray-400);
    font-size: 0.9375rem;
    transition: var(--transition-normal);
}

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

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.footer-social svg {
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

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

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

.footer-bottom-links a {
    color: var(--pvp-gray-400);
    font-size: 0.875rem;
}

.footer-bottom-links a:hover {
    color: var(--pvp-white);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-dark) 100%);
    padding: 160px 0 80px;
    text-align: center;
    color: var(--pvp-white);
}

.page-header h1 {
    color: var(--pvp-white);
    margin-bottom: 1rem;
}

.page-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs a:hover {
    color: var(--pvp-white);
}

.breadcrumbs span {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs .current {
    color: var(--pvp-white);
}

/* Value Creation Section */
.value-section {
    background: var(--pvp-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 2rem;
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--pvp-white);
}

.value-card h4 {
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--pvp-gray-600);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, var(--pvp-primary) 0%, var(--pvp-primary-dark) 100%);
    padding: 4rem 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-content h3 {
    color: var(--pvp-white);
    margin-bottom: 1rem;
}

.newsletter-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--pvp-gray-900);
    color: var(--pvp-white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--pvp-black);
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (min-width: 768px) {
    .nav-desktop {
        display: block;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .newsletter-form {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .about-stats {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-logo {
        width: 120px;
        height: 120px;
    }
    
    .fund-card {
        padding: 2rem;
    }
    
    .fund-size {
        font-size: 2.5rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus Styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--pvp-primary);
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .hero-cta,
    .scroll-indicator,
    .nav-cta,
    .menu-toggle {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    body {
        color: #000;
    }
    
    a {
        text-decoration: underline;
    }
}
