:root {
            --black: #0a0a0a;
            --white: #fafafa;
            --cream: #f5f2ed;
            --accent: #c9a962;
            --accent-light: #e8d4a8;
            --gray: #6b6b6b;
            --light-gray: #e5e5e5;
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Syne', sans-serif;
            background: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        /* Custom Cursor */
        .cursor {
            width: 20px;
            height: 20px;
            border: 1px solid var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.15s ease, opacity 0.15s ease;
            mix-blend-mode: difference;
        }

        .cursor-dot {
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
            position: fixed;
            pointer-events: none;
            z-index: 9999;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 30px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: linear-gradient(to bottom, rgba(10,10,10,0.95), transparent);
            backdrop-filter: blur(20px);
        }

        .logo {
            font-family: 'Instrument Serif', serif;
            font-size: 28px;
            font-weight: 400;
            letter-spacing: 0.05em;
            color: var(--white);
            text-decoration: none;
        }

        .logo span {
            color: var(--accent);
        }

        .nav-links {
            display: flex;
            gap: 50px;
            list-style: none;
        }

        .nav-links a {
            color: var(--white);
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover {
            opacity: 1;
        }

        .nav-cta {
            background: var(--accent);
            color: var(--black);
            padding: 14px 32px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

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

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 60px;
            position: relative;
            overflow: hidden;
        }

        .page-hero {
            min-height: 60vh;
            align-items: flex-start;
            text-align: left;
            padding: 160px 60px 80px;
        }

        .page-hero h1 {
            font-size: clamp(42px, 8vw, 96px);
        }

        .page-hero .hero-subtitle {
            max-width: 720px;
            margin-bottom: 0;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 50% 0%, rgba(201,169,98,0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .hero-tagline {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 40px;
            opacity: 0;
            animation: fadeUp 1s ease forwards;
            animation-delay: 0.3s;
        }

        .hero h1 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(48px, 10vw, 140px);
            font-weight: 400;
            line-height: 1;
            letter-spacing: -0.03em;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeUp 1s ease forwards;
            animation-delay: 0.5s;
        }

        .hero h1 em {
            font-style: italic;
            color: var(--accent);
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 400;
            color: var(--gray);
            max-width: 650px;
            line-height: 1.7;
            margin-bottom: 60px;
            opacity: 0;
            animation: fadeUp 1s ease forwards;
            animation-delay: 0.7s;
        }

        .hero-stats {
            display: flex;
            gap: 80px;
            margin-top: 60px;
            opacity: 0;
            animation: fadeUp 1s ease forwards;
            animation-delay: 0.9s;
        }

        .stat {
            text-align: center;
        }

        .stat-number {
            font-family: 'Instrument Serif', serif;
            font-size: 64px;
            color: var(--white);
            line-height: 1;
        }

        .stat-number span {
            color: var(--accent);
        }

        .stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gray);
            margin-top: 10px;
        }

        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0;
            animation: fadeUp 1s ease forwards, float 2s ease-in-out infinite;
            animation-delay: 1.2s, 1.2s;
        }

        .scroll-indicator span {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gray);
        }

        .scroll-line {
            width: 1px;
            height: 60px;
            background: linear-gradient(to bottom, var(--accent), transparent);
        }

        /* Portfolio Section */
        .portfolio {
            padding: 150px 60px;
            background: var(--cream);
            color: var(--black);
            position: relative;
        }

        .section-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            margin-bottom: 80px;
        }

        .section-label {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 20px;
        }

        .portfolio .section-label {
            color: #816528;
        }

        .section-title {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(36px, 6vw, 72px);
            font-weight: 400;
            line-height: 1.1;
            max-width: 700px;
        }

        .section-count {
            font-family: 'Instrument Serif', serif;
            font-size: 120px;
            color: var(--light-gray);
            line-height: 1;
        }

        /* Region Sections */
        .region-section {
            margin-bottom: 80px;
        }

        .region-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 1px solid var(--light-gray);
        }

        .region-flag {
            font-size: 32px;
        }

        .region-title {
            font-family: 'Instrument Serif', serif;
            font-size: 36px;
            font-weight: 400;
        }

        .region-count-badge {
            background: var(--accent);
            color: var(--black);
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            padding: 6px 14px;
            letter-spacing: 0.1em;
        }

        /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .portfolio-card {
            background: var(--white);
            padding: 32px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .portfolio-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 30px 60px rgba(0,0,0,0.12);
        }

        .portfolio-card:hover::before {
            transform: scaleX(1);
        }

        .portfolio-card.featured {
            grid-column: span 3;
            padding: 60px;
            background: var(--black);
            color: var(--white);
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .portfolio-card.featured::before {
            background: var(--accent);
        }

        .card-type {
            display: inline-block;
            font-family: 'Space Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            padding: 4px 10px;
            background: rgba(201,169,98,0.15);
            color: var(--accent);
            margin-bottom: 16px;
        }

        .card-location {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gray);
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .card-location-dot {
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
        }

        .card-title {
            font-family: 'Instrument Serif', serif;
            font-size: 22px;
            font-weight: 400;
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .card-domain {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .portfolio-card.featured .card-title {
            font-size: 42px;
            margin-bottom: 20px;
        }

        .portfolio-card.featured .card-domain {
            font-size: 14px;
        }

        .card-description {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }

        .portfolio-card.featured .card-description {
            color: rgba(255,255,255,0.6);
            font-size: 16px;
        }

        .card-arrow {
            position: absolute;
            bottom: 32px;
            right: 32px;
            width: 40px;
            height: 40px;
            border: 1px solid var(--light-gray);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .portfolio-card.featured .card-arrow {
            position: static;
            border-color: rgba(255,255,255,0.2);
            width: 60px;
            height: 60px;
        }

        .portfolio-card:hover .card-arrow {
            background: var(--accent);
            border-color: var(--accent);
            transform: rotate(-45deg);
        }

        .card-arrow svg {
            width: 16px;
            height: 16px;
            stroke: var(--gray);
        }

        .portfolio-card.featured .card-arrow svg {
            stroke: var(--white);
            width: 20px;
            height: 20px;
        }

        .portfolio-card:hover .card-arrow svg {
            stroke: var(--black);
        }

        .featured-content {
            display: flex;
            flex-direction: column;
        }

        .featured-stats {
            display: flex;
            gap: 40px;
            margin-top: 30px;
            padding-top: 30px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }

        .featured-stat-value {
            font-family: 'Instrument Serif', serif;
            font-size: 36px;
            color: var(--accent);
        }

        .featured-stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            color: rgba(255,255,255,0.4);
        }

        .featured-visual {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .globe-mini {
            width: 280px;
            height: 280px;
            border: 1px solid rgba(201,169,98,0.3);
            border-radius: 50%;
            position: relative;
            animation: rotate 30s linear infinite;
        }

        .globe-mini::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 200px;
            height: 200px;
            border: 1px solid rgba(201,169,98,0.2);
            border-radius: 50%;
        }

        .globe-mini::after {
            content: 'GLOBAL';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-family: 'Space Mono', monospace;
            font-size: 12px;
            letter-spacing: 0.3em;
            color: var(--accent);
        }

        /* Other Ventures Section */
        .other-ventures {
            margin-top: 100px;
            padding-top: 80px;
            border-top: 1px solid var(--light-gray);
        }

        .ventures-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .venture-card {
            background: var(--white);
            padding: 24px;
            border: 1px solid var(--light-gray);
            transition: all 0.3s ease;
        }

        .venture-card:hover {
            border-color: var(--accent);
            transform: translateY(-4px);
        }

        .venture-type {
            font-family: 'Space Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 12px;
        }

        .venture-name {
            font-family: 'Instrument Serif', serif;
            font-size: 18px;
            margin-bottom: 6px;
        }

        .venture-domain {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            color: var(--gray);
        }

        /* About Section */
        .about-section {
            padding: 150px 60px;
            background: var(--cream);
            color: var(--black);
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 60px;
            align-items: start;
        }

        .about-copy p {
            font-size: 18px;
            color: #4f4f4f;
            line-height: 1.8;
            margin-bottom: 24px;
        }

        .about-copy p:last-child {
            margin-bottom: 0;
        }

        .about-highlight {
            background: var(--white);
            padding: 32px;
            border: 1px solid var(--light-gray);
        }

        .about-highlight h3 {
            font-family: 'Instrument Serif', serif;
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 20px;
        }

        .about-stats {
            display: grid;
            gap: 20px;
        }

        .about-stat {
            font-family: 'Instrument Serif', serif;
            font-size: 36px;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 6px;
        }

        .about-stat-label {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            color: var(--gray);
        }

        /* Network Section */
        .network {
            padding: 200px 60px;
            background: var(--black);
            position: relative;
            overflow: hidden;
        }

        .network::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(201,169,98,0.08) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .network-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
        }

        .network-visual {
            position: relative;
            height: 600px;
        }

        .globe-ring {
            position: absolute;
            border: 1px solid rgba(201,169,98,0.2);
            border-radius: 50%;
            animation: rotate 30s linear infinite;
        }

        .globe-ring:nth-child(1) {
            width: 400px;
            height: 400px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .globe-ring:nth-child(2) {
            width: 500px;
            height: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotateX(60deg);
            animation-direction: reverse;
            animation-duration: 40s;
        }

        .globe-ring:nth-child(3) {
            width: 550px;
            height: 550px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotateY(60deg);
            animation-duration: 50s;
        }

        .globe-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .globe-center span {
            font-family: 'Instrument Serif', serif;
            font-size: 48px;
            color: var(--black);
        }

        .location-dot {
            position: absolute;
            width: 12px;
            height: 12px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 2s ease-in-out infinite;
        }

        .location-dot::after {
            content: attr(data-city);
            position: absolute;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            font-family: 'Space Mono', monospace;
            font-size: 9px;
            letter-spacing: 0.1em;
            text-transform: uppercase;
            white-space: nowrap;
            color: var(--gray);
        }

        .location-dot:nth-child(4) { top: 10%; left: 15%; animation-delay: 0s; }
        .location-dot:nth-child(5) { top: 20%; left: 75%; animation-delay: 0.2s; }
        .location-dot:nth-child(6) { top: 35%; left: 85%; animation-delay: 0.4s; }
        .location-dot:nth-child(7) { top: 55%; left: 80%; animation-delay: 0.6s; }
        .location-dot:nth-child(8) { top: 70%; left: 70%; animation-delay: 0.8s; }
        .location-dot:nth-child(9) { top: 45%; left: 10%; animation-delay: 1s; }
        .location-dot:nth-child(10) { top: 60%; left: 25%; animation-delay: 1.2s; }
        .location-dot:nth-child(11) { top: 30%; left: 30%; animation-delay: 1.4s; }

        .network-text h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(36px, 5vw, 64px);
            font-weight: 400;
            line-height: 1.1;
            margin-bottom: 40px;
        }

        .network-text h2 em {
            color: var(--accent);
            font-style: italic;
        }

        .network-text p {
            font-size: 18px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 50px;
        }

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

        .region-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
            background: rgba(255,255,255,0.03);
            border: 1px solid rgba(255,255,255,0.05);
            transition: all 0.3s ease;
        }

        .region-item:hover {
            background: rgba(201,169,98,0.1);
            border-color: var(--accent);
        }

        .region-count {
            font-family: 'Instrument Serif', serif;
            font-size: 32px;
            color: var(--accent);
        }

        .region-name {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.15em;
            text-transform: uppercase;
        }

        /* Impact Section */
        .impact {
            padding: 200px 60px;
            background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
            position: relative;
        }

        .impact-header {
            text-align: center;
            margin-bottom: 120px;
        }

        .impact-header h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(48px, 8vw, 100px);
            font-weight: 400;
            line-height: 1;
        }

        .impact-header h2 span {
            display: block;
            color: var(--accent);
            font-style: italic;
        }

        .impact-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1px;
            background: rgba(255,255,255,0.1);
        }

        .impact-item {
            background: var(--black);
            padding: 60px 40px;
            text-align: center;
            transition: all 0.5s ease;
        }

        .impact-item:hover {
            background: rgba(201,169,98,0.1);
        }

        .impact-value {
            font-family: 'Instrument Serif', serif;
            font-size: 72px;
            line-height: 1;
            margin-bottom: 20px;
        }

        .impact-value span {
            color: var(--accent);
        }

        .impact-label {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--gray);
        }

        /* Brands Marquee */
        .brands {
            padding: 100px 0;
            background: var(--cream);
            overflow: hidden;
        }

        .brands-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .brands-title span {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            letter-spacing: 0.4em;
            text-transform: uppercase;
            color: var(--gray);
        }

        .marquee {
            display: flex;
            animation: marquee 60s linear infinite;
        }

        .marquee-content {
            display: flex;
            gap: 60px;
            padding: 0 30px;
        }

        .brand-item {
            font-family: 'Instrument Serif', serif;
            font-size: 20px;
            color: var(--black);
            white-space: nowrap;
            opacity: 0.4;
            transition: opacity 0.3s ease;
        }

        .brand-item:hover {
            opacity: 1;
        }

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

        .cta::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='%23c9a962' 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");
            pointer-events: none;
        }

        .cta h2 {
            font-family: 'Instrument Serif', serif;
            font-size: clamp(48px, 8vw, 120px);
            font-weight: 400;
            line-height: 1;
            margin-bottom: 40px;
        }

        .cta h2 em {
            color: var(--accent);
            font-style: italic;
        }

        .cta p {
            font-size: 20px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 60px;
            line-height: 1.7;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
        }

        .btn-primary {
            background: var(--accent);
            color: var(--black);
            padding: 20px 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(201,169,98,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--white);
            padding: 20px 50px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.15em;
            text-transform: uppercase;
            text-decoration: none;
            border: 1px solid rgba(255,255,255,0.2);
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Footer */
        footer {
            padding: 80px 60px;
            background: #050505;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 80px;
        }

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

        .footer-logo {
            font-family: 'Instrument Serif', serif;
            font-size: 32px;
            margin-bottom: 20px;
        }

        .footer-logo span {
            color: var(--accent);
        }

        .footer-brand p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.7;
        }

        .footer-column h4 {
            font-family: 'Space Mono', monospace;
            font-size: 10px;
            letter-spacing: 0.3em;
            text-transform: uppercase;
            color: var(--accent);
            margin-bottom: 30px;
        }

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

        .footer-column li {
            margin-bottom: 15px;
        }

        .footer-column a {
            color: var(--gray);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }

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

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

        .footer-bottom p {
            font-family: 'Space Mono', monospace;
            font-size: 11px;
            color: var(--gray);
        }

        .footer-social {
            display: flex;
            gap: 20px;
        }

        .footer-social a {
            width: 40px;
            height: 40px;
            border: 1px solid rgba(255,255,255,0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .footer-social a:hover {
            border-color: var(--accent);
            background: var(--accent);
        }

        .footer-social svg {
            width: 16px;
            height: 16px;
            fill: var(--gray);
        }

        .footer-social a:hover svg {
            fill: var(--black);
        }

        /* Animations */
        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50% { transform: translateX(-50%) translateY(-10px); }
        }

        @keyframes rotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }

        @keyframes marquee {
            from { transform: translateX(0); }
            to { transform: translateX(-50%); }
        }

        @media (hover: none) and (pointer: coarse) {
            .cursor,
            .cursor-dot {
                display: none;
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .portfolio-card.featured {
                grid-column: span 2;
                grid-template-columns: 1fr;
            }

            .featured-visual {
                display: none;
            }

            .impact-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .ventures-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .about-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            nav {
                position: absolute;
                background: transparent;
                backdrop-filter: none;
                padding: 20px 30px;
            }

            .nav-links {
                display: none;
            }

            .hero {
                padding: 120px 30px;
            }

            .page-hero {
                padding: 130px 30px 70px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 40px;
            }

            .portfolio {
                padding: 100px 30px;
            }

            .portfolio-grid {
                grid-template-columns: 1fr;
            }

            .portfolio-card.featured {
                grid-column: span 1;
            }

            .network {
                padding: 100px 30px;
            }

            .network-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .network-visual {
                height: 400px;
            }

            .region-list {
                grid-template-columns: 1fr;
            }

            .impact {
                padding: 100px 30px;
            }

            .impact-grid {
                grid-template-columns: 1fr;
            }

            .cta {
                padding: 100px 30px;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .ventures-grid {
                grid-template-columns: 1fr;
            }

            .section-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }

            .section-count {
                font-size: 80px;
            }

            .about-section {
                padding: 100px 30px;
            }
        }

        @media (max-width: 520px) {
            nav {
                padding-top: calc(16px + env(safe-area-inset-top));
                padding-right: calc(20px + env(safe-area-inset-right));
                padding-left: calc(20px + env(safe-area-inset-left));
            }

            .hero {
                padding: 110px 22px 80px;
            }

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

            .hero-stats {
                gap: 28px;
                margin-top: 40px;
            }

            .stat-number {
                font-size: 48px;
            }

            .section-count {
                font-size: 64px;
            }

            .portfolio {
                padding: 90px 22px;
            }

            .portfolio-card {
                padding: 24px;
            }

            .portfolio-card.featured {
                padding: 36px;
                gap: 32px;
            }

            .card-title {
                font-size: 20px;
            }

            .card-description {
                font-size: 13px;
            }

            .network {
                padding: 90px 22px;
            }

            .network-visual {
                height: 320px;
            }

            .globe-ring:nth-child(1) {
                width: 280px;
                height: 280px;
            }

            .globe-ring:nth-child(2) {
                width: 340px;
                height: 340px;
            }

            .globe-ring:nth-child(3) {
                width: 380px;
                height: 380px;
            }

            .globe-center {
                width: 120px;
                height: 120px;
            }

            .globe-center span {
                font-size: 36px;
            }

            .impact {
                padding: 90px 22px;
            }

            .impact-item {
                padding: 40px 24px;
            }

            .impact-value {
                font-size: 56px;
            }

            .brands {
                padding: 70px 0;
            }

            .cta {
                padding: 90px 22px;
            }

            .cta p {
                font-size: 18px;
            }

            footer {
                padding: 70px 22px;
            }

            .page-hero {
                padding: 120px 22px 60px;
            }

            .about-section {
                padding: 90px 22px;
            }

            .about-copy p {
                font-size: 16px;
            }

            .about-stat {
                font-size: 28px;
            }
        }
