/* Layout Ventures Website Styles - High-Tech Edition */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-green: #00a3b8;
    --primary-green-light: #00c4db;
    --primary-green-dark: #008a9d;
    --dark-green: #085466;
    --white: #ffffff;
    --black: #000000;
    --light-gray: #f7f8fa;
    --medium-gray: #e8eaed;
    --text-gray: #2d3748;
    --text-light: #64748b;

    /* Refined shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.04), 0 10px 20px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.06), 0 20px 48px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(0, 163, 184, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(0, 163, 184, 0.3);

    /* Timing functions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    line-height: 1.7;
    color: var(--text-gray);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--white);
}

/* Page load animation */
body.loading {
    overflow: hidden;
}

.page-loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s var(--ease-out-expo), visibility 0.6s;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    width: 120px;
    animation: pulse-loader 1.5s ease-in-out infinite;
}

@keyframes pulse-loader {
    0%, 100% { opacity: 0.4; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1); }
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light), #00e5ff);
    z-index: 10001;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--primary-green), 0 0 20px var(--primary-green-light);
}

/* Grain texture overlay */
.grain-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 48px;
}

/* Header - Modern with backdrop blur */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.4s var(--ease-out-expo);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.header-logo:hover {
    opacity: 1;
}

.nav {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s var(--ease-out-quart);
    position: relative;
    padding: 8px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light));
    transition: width 0.4s var(--ease-out-expo);
    box-shadow: 0 0 10px var(--primary-green);
}

.nav-link:hover {
    color: var(--primary-green-light);
    text-shadow: 0 0 20px rgba(0, 163, 184, 0.5);
}

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

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease-out-expo);
    border-radius: 2px;
}

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

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

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

/* Hero Section - Enhanced with animated elements */
.hero {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 50%, var(--dark-green) 100%);
    background-size: 400% 400%;
    animation: gradient-animate 15s ease infinite;
    color: var(--white);
    padding: 100px 0 160px;
    margin-top: 52px;
    min-height: 92vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@keyframes gradient-animate {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Particle canvas */
#particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

/* Animated gradient mesh background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 196, 219, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(8, 84, 102, 0.2) 0%, transparent 50%);
    animation: gradient-shift 15s ease-in-out infinite;
}

@keyframes gradient-shift {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(2deg); }
}

/* Floating orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float-orb 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(0, 196, 219, 0.3);
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.hero-orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(8, 84, 102, 0.4);
    bottom: -50px;
    left: -50px;
    animation-delay: -7s;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: rgba(0, 229, 255, 0.2);
    top: 50%;
    right: 20%;
    animation-delay: -14s;
}

@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 20px) scale(0.95); }
    75% { transform: translate(20px, 10px) scale(1.02); }
}

/* Decorative animated rings */
.hero-ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.hero-ring-1 {
    width: 500px;
    height: 500px;
    right: -150px;
    top: 50%;
    transform: translateY(-50%);
    animation: ring-pulse 8s ease-in-out infinite;
}

.hero-ring-2 {
    width: 350px;
    height: 350px;
    right: -75px;
    top: 50%;
    transform: translateY(-50%);
    animation: ring-pulse 8s ease-in-out infinite 1s;
}

.hero-ring-3 {
    width: 200px;
    height: 200px;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    animation: ring-pulse 8s ease-in-out infinite 2s;
}

@keyframes ring-pulse {
    0%, 100% { opacity: 0.3; transform: translateY(-50%) scale(1); }
    50% { opacity: 0.6; transform: translateY(-50%) scale(1.05); }
}

/* Grid lines background */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero .container {
    max-width: 1600px;
    width: 100%;
    margin: 0 auto;
    padding: 0 100px;
    position: relative;
    z-index: 1;
}

.hero-logo-top {
    margin: 0 0 100px 0;
    max-width: 200px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

.hero-logo-top img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 30px rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 40px;
    max-width: 1000px;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.4s forwards;
}

/* Gradient text effect for emphasis */
.hero-title .gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--primary-green-light) 50%, #00e5ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    max-width: 800px;
    opacity: 0;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: rgba(255, 255, 255, 0.85);
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.6s forwards;
}

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

/* Strategy/Pillars Section */
.pillars {
    background: var(--white);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

.pillars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--medium-gray), transparent);
}

/* Subtle animated background for pillars */
.pillars-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 100% 100% at 50% 0%, rgba(0, 163, 184, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    position: relative;
}

.pillar-card {
    background: var(--light-gray);
    padding: 56px 44px;
    border-radius: 24px;
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
    border: 1px solid transparent;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light), #00e5ff);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-quart);
}

.pillar-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(0, 163, 184, 0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-quart);
}

.pillar-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.08),
        0 0 60px rgba(0, 163, 184, 0.15);
    background: var(--white);
    border-color: rgba(0, 163, 184, 0.15);
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-card:hover::after {
    opacity: 1;
}

.pillar-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}

.pillar-card p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-light);
    font-weight: 400;
    position: relative;
    z-index: 1;
}

/* Portfolio Section */
.portfolio {
    background: var(--light-gray);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
}

/* Animated dots background */
.portfolio-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 163, 184, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
    opacity: 0.5;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 80px;
    text-align: center;
    letter-spacing: -1.5px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-green-light), #00e5ff);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 163, 184, 0.4);
}

.subsection-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--text-light);
    margin: 120px 0 60px;
    text-align: center;
    letter-spacing: -0.3px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
    margin-bottom: 60px;
    position: relative;
}

.portfolio-grid.prior-investments {
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.prior-investments .portfolio-item {
    min-width: 140px;
}

.portfolio-item {
    position: relative;
    background: var(--white);
    border: 2px solid rgba(0, 163, 184, 0.15);
    border-radius: 24px;
    padding: 44px 28px;
    transition: all 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    box-shadow: var(--shadow-sm);
    transform-style: preserve-3d;
}

.portfolio-item:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 0 80px rgba(0, 163, 184, 0.2);
    border-color: var(--primary-green);
    background: var(--white);
}

.portfolio-logo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ease-out-quart);
}

.portfolio-item:hover .portfolio-logo {
    transform: scale(0.9);
    opacity: 0.2;
}

.portfolio-logo img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: all 0.4s var(--ease-out-quart);
}

.placeholder-logo {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark-green);
    padding: 20px;
    background: var(--medium-gray);
    border-radius: 8px;
}

.company-name {
    display: none;
}

.portfolio-grid.prior-investments .portfolio-item {
    min-height: 160px;
    padding: 32px 24px;
}

.portfolio-grid.prior-investments .portfolio-logo img {
    max-width: 80%;
    max-height: 80%;
}

.portfolio-grid.prior-investments .company-description {
    font-size: 14px;
    line-height: 1.5;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    color: var(--white);
    padding: 28px;
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s var(--ease-out-expo);
    z-index: 2;
    transform: scale(0.9);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Mobile tap to reveal */
.portfolio-item.mobile-active .portfolio-overlay {
    opacity: 1;
    transform: scale(1);
}

.portfolio-item.mobile-active .portfolio-logo {
    transform: scale(0.9);
    opacity: 0.2;
}

.portfolio-item.mobile-active .exit-badge {
    opacity: 0;
}

.portfolio-overlay .company-name {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--white);
}

.company-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 400;
}

.website-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s var(--ease-out-quart);
    text-decoration: none;
    margin-top: auto;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.website-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.exit-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--primary-green), #00e5ff);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 1;
    transition: all 0.4s var(--ease-out-quart);
    box-shadow: 0 4px 15px rgba(0, 163, 184, 0.3);
}

.portfolio-item:hover .exit-badge {
    opacity: 0;
    transform: translateY(-15px) scale(0.8);
}

/* Team Section */
.team {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
    padding: 160px 0 140px 0;
    position: relative;
    overflow: hidden;
}

/* Animated mesh for team section */
.team-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 80%, rgba(0, 229, 255, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: mesh-move 20s ease-in-out infinite;
}

@keyframes mesh-move {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-20px, 20px); }
}

.team .section-title {
    margin-bottom: 80px;
    color: var(--white);
}

.team .section-title::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.4), rgba(0, 229, 255, 0.6));
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 48px;
    position: relative;
}

.team-member {
    text-align: center;
    max-width: 360px;
    background: var(--white);
    padding: 60px 52px 52px;
    border-radius: 28px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transition: all 0.5s var(--ease-out-expo);
    position: relative;
    transform-style: preserve-3d;
}

.team-member::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 30px;
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green), #00e5ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-quart);
}

.team-member:hover {
    transform: translateY(-16px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.team-member:hover::before {
    opacity: 1;
}

.team-photo {
    width: 180px;
    height: 180px;
    margin: 0 auto 32px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light-gray);
    border: 4px solid var(--primary-green);
    box-shadow:
        0 8px 32px rgba(0, 163, 184, 0.25),
        0 0 0 8px rgba(0, 163, 184, 0.1);
    transition: all 0.5s var(--ease-out-expo);
}

.team-member:hover .team-photo {
    transform: scale(1.08);
    box-shadow:
        0 16px 48px rgba(0, 163, 184, 0.35),
        0 0 0 12px rgba(0, 163, 184, 0.15),
        0 0 60px rgba(0, 163, 184, 0.3);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.placeholder-photo {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-green);
    color: var(--white);
    font-size: 48px;
    font-weight: 600;
}

.team-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.team-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 28px;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow: 0 8px 24px rgba(0, 163, 184, 0.35);
}

.linkedin-link:hover {
    background: linear-gradient(135deg, var(--primary-green-light), var(--primary-green));
    transform: scale(1.2) rotate(10deg);
    box-shadow:
        0 12px 32px rgba(0, 163, 184, 0.45),
        0 0 40px rgba(0, 163, 184, 0.3);
}

.linkedin-link svg {
    width: 24px;
    height: 24px;
}

.advisors-note {
    text-align: center;
    font-size: 18px;
    color: var(--white);
    opacity: 0.85;
    font-style: italic;
    margin-top: 64px;
    font-weight: 400;
    letter-spacing: 0.2px;
    position: relative;
}

/* Contact CTA Section */
.contact-cta {
    background: var(--black);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 100%, rgba(0, 163, 184, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact-cta .container {
    position: relative;
}

.contact-tagline {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-green-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    opacity: 0;
    transform: translateY(20px);
}

.contact-title {
    font-size: 52px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(30px);
}

.contact-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 48px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(30px);
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-dark));
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 60px;
    transition: all 0.4s var(--ease-out-expo);
    box-shadow:
        0 8px 32px rgba(0, 163, 184, 0.35),
        0 0 0 1px rgba(0, 163, 184, 0.5);
    opacity: 0;
    transform: translateY(30px);
   .contact-linkedin {
    display: flex;
    justify-content: center;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(30px);
}
}

.contact-button:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 16px 48px rgba(0, 163, 184, 0.45),
        0 0 60px rgba(0, 163, 184, 0.3),
        0 0 0 1px rgba(0, 163, 184, 0.8);
}

.contact-button svg {
    transition: transform 0.3s var(--ease-out-quart);
}

.contact-button:hover svg {
    transform: translateX(4px);
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 48px 0;
    text-align: center;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.footer p {
    font-size: 14px;
    opacity: 0.5;
    font-weight: 400;
    letter-spacing: 0.3px;
}

/* Responsive Design */
@media (max-width: 1800px) {
    .hero .container {
        max-width: 1500px;
        padding: 0 90px;
    }

    .hero-title {
        font-size: 48px;
        max-width: 950px;
    }

    .hero-subtitle {
        max-width: 750px;
    }
}

@media (max-width: 1600px) {
    .hero .container {
        max-width: 1400px;
        padding: 0 80px;
    }

    .hero-title {
        font-size: 46px;
        max-width: 900px;
    }

    .hero-subtitle {
        max-width: 700px;
    }
}

@media (max-width: 1400px) {
    .hero .container {
        padding: 0 70px;
    }

    .hero-title {
        font-size: 42px;
        max-width: 850px;
    }

    .hero-subtitle {
        font-size: 19px;
        max-width: 650px;
    }
}

@media (max-width: 1200px) {
    .hero .container {
        padding: 0 60px;
    }

    .hero-title {
        font-size: 40px;
        max-width: 800px;
    }

    .hero-subtitle {
        max-width: 600px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .portfolio-grid.prior-investments {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .container {
        padding: 0 32px;
    }

    .header .container {
        padding: 0 24px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        transition: right 0.4s var(--ease-out-expo);
        z-index: 999;
    }

    .nav.active {
        right: 0;
    }

    .nav-link {
        font-size: 16px;
        letter-spacing: 2px;
    }

    .pillars {
        padding: 100px 0;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pillar-card {
        padding: 44px 36px;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

   .portfolio-grid.prior-investments {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .hero {
        padding: 80px 0 120px;
        min-height: 85vh;
    }

    .hero-ring-1, .hero-ring-2, .hero-ring-3 {
        display: none;
    }

    .hero .container {
        max-width: 1200px;
        padding: 0 48px;
    }

    .hero-logo-top {
        max-width: 170px;
        margin-bottom: 80px;
    }

    .hero-title {
        font-size: 36px;
        font-weight: 700;
        line-height: 1.15;
        max-width: 100%;
        letter-spacing: -1.2px;
    }

    .hero-subtitle {
        font-size: 18px;
        line-height: 1.65;
        max-width: 100%;
    }

    .section-title {
        font-size: 40px;
        margin-bottom: 64px;
    }

    .subsection-title {
        font-size: 18px;
        margin: 80px 0 48px;
    }

    .team {
        padding: 100px 0 80px;
    }

    .contact-cta {
        padding: 80px 0;
    }

    .contact-title {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .header {
        padding: 12px 0;
    }

    .header-logo {
        height: 24px;
    }

    .hero {
        padding: 80px 0 100px;
        min-height: auto;
    }

    .hero-orb-1, .hero-orb-2, .hero-orb-3 {
        display: none;
    }

    .hero .container {
        padding: 0 28px;
    }

    .hero-logo-top {
        max-width: 150px;
        margin-bottom: 64px;
    }

    .hero-title {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 17px;
        line-height: 1.65;
    }

    .pillars {
        padding: 80px 0;
    }

    .pillar-card {
        padding: 40px 32px;
        border-radius: 20px;
    }

    .pillar-card h3 {
        font-size: 24px;
    }

    .pillar-card p {
        font-size: 16px;
    }

    .portfolio {
        padding: 80px 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .portfolio-item {
        min-height: 150px;
        padding: 28px 20px;
        border-radius: 20px;
    }

    .portfolio-logo img {
        max-width: 85%;
        max-height: 85%;
    }

    .portfolio-overlay {
        padding: 20px;
        border-radius: 18px;
    }

    .company-description {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .website-link {
        width: 40px;
        height: 40px;
    }

    .website-link svg {
        width: 18px;
        height: 18px;
    }

    .exit-badge {
        top: 12px;
        right: 12px;
        padding: 5px 12px;
        font-size: 9px;
    }

    .portfolio-grid.prior-investments {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .portfolio-grid.prior-investments .portfolio-item {
        min-height: 130px;
        padding: 22px 16px;
    }

    .portfolio-grid.prior-investments .portfolio-logo img {
        max-width: 75%;
        max-height: 75%;
    }

    .portfolio-grid.prior-investments .company-description {
        font-size: 12px;
    }

    .section-title {
        font-size: 36px;
        margin-bottom: 56px;
    }

    .section-title::after {
        bottom: -16px;
        width: 60px;
        height: 3px;
    }

    .subsection-title {
        font-size: 17px;
        margin: 64px 0 36px;
    }

    .team {
        padding: 80px 0 64px;
    }

    .team .section-title {
        margin-bottom: 56px;
    }

    .team-grid {
        gap: 40px;
    }

    .team-member {
        padding: 48px 40px 44px;
        border-radius: 24px;
    }

    .team-photo {
        width: 150px;
        height: 150px;
        margin-bottom: 28px;
    }

    .team-name {
        font-size: 26px;
    }

    .team-title {
        font-size: 15px;
    }

    .advisors-note {
        font-size: 16px;
        margin-top: 52px;
    }

    .contact-cta {
        padding: 64px 0;
    }

    .contact-tagline {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .contact-title {
        font-size: 32px;
        letter-spacing: -1px;
    }

    .contact-subtitle {
        font-size: 17px;
    }

    .contact-button {
        padding: 18px 40px;
        font-size: 15px;
    }

    .footer {
        padding: 36px 0;
    }
}

@media (max-width: 480px) {
    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

.portfolio-grid.prior-investments {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .prior-investments .portfolio-item {
        min-width: 120px;
    }

    .portfolio-item {
        min-height: 160px;
        padding: 32px 24px;
    }

    .portfolio-grid.prior-investments .portfolio-item {
        min-height: 140px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .subsection-title {
        font-size: 15px;
    }

    .pillar-card h3 {
        font-size: 22px;
    }

    .pillar-card p {
        font-size: 15px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-subtitle {
        font-size: 16px;
    }
}

/* Smooth scroll for reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Custom Cursor */
.custom-cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-green-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease-out, opacity 0.15s ease-out, background 0.15s ease-out;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}

.custom-cursor.hovering {
    transform: translate(-50%, -50%) scale(2);
    background: rgba(0, 196, 219, 0.3);
    border-color: transparent;
}

.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--primary-green-light);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: opacity 0.15s ease-out;
}

/* Hide custom cursor on touch devices */
@media (pointer: coarse) {
    .custom-cursor, .cursor-dot {
        display: none;
    }
}

/* Page transition */
.page-transition {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 99998;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.5s var(--ease-out-expo);
}

.page-transition.active {
    transform: scaleY(1);
    transform-origin: top;
}

/* Word reveal animation */
.word-reveal {
    overflow: hidden;
    display: inline-block;
}

.word-reveal span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
    animation: word-reveal 0.6s var(--ease-out-expo) forwards;
}

@keyframes word-reveal {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Focus states for accessibility */
.nav-link:focus,
.website-link:focus,
.linkedin-link:focus,
.contact-button:focus {
    outline: 2px solid var(--primary-green-light);
    outline-offset: 4px;
}

/* Print styles */
@media print {
    .header,
    .portfolio-overlay,
    .website-link,
    .linkedin-link,
    .scroll-progress,
    .grain-overlay,
    .page-loader,
    .hero-orb,
    .hero-ring,
    .contact-cta {
        display: none !important;
    }

    .hero {
        background: white !important;
        color: black !important;
        min-height: auto;
        padding: 40px 0;
    }

    body {
        font-size: 12pt;
    }
}
