/* ========================================
   JONATHAN BARLOW - EXECUTIVE BLUE
   Color Palette: Royal Blue #1e40af, Steel Gray #64748b
   ======================================== */

/* CSS Variables */
:root {
    /* Primary Colors - Blue & Gray Executive Palette */
    --pink: #1e40af;
    --pink-light: #3b82f6;
    --pink-dark: #1e3a8a;
    --coral: #2563eb;
    --coral-light: #60a5fa;
    --purple-bg: #f8fafc;
    --purple-light: #f1f5f9;
    --purple-accent: #64748b;

    /* Neutrals - Slate Gray */
    --dark: #0f172a;
    --dark-soft: #1e293b;
    --text: #334155;
    --text-muted: #475569;
    --white: #ffffff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--purple-bg) 0%, #fff 50%, var(--purple-light) 100%);
    --gradient-mesh: radial-gradient(ellipse at 20% 30%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
                     radial-gradient(ellipse at 80% 70%, rgba(37, 99, 235, 0.06) 0%, transparent 50%),
                     radial-gradient(ellipse at 50% 50%, rgba(100, 116, 139, 0.04) 0%, transparent 60%);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    /* Spacing */
    --section-padding: clamp(4rem, 10vh, 8rem);
    --container-width: 1280px;
    --container-padding: clamp(1.5rem, 5vw, 3rem);

    /* Animation */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 18, 37, 0.06);
    --shadow-md: 0 8px 24px rgba(26, 18, 37, 0.08);
    --shadow-lg: 0 16px 48px rgba(26, 18, 37, 0.12);
    --shadow-glow: 0 0 40px rgba(30, 64, 175, 0.25);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--purple-bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

/* Custom Cursor - Hidden, using normal cursor */
.cursor-dot,
.cursor-ring {
    display: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-ring {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.15s ease;
}

body:hover .cursor-dot {
    transform: translate(-50%, -50%) scale(1);
}

a:hover ~ .cursor-dot,
button:hover ~ .cursor-dot {
    transform: translate(-50%, -50%) scale(2);
}

/* Floating Orbs */
.orbs-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--pink);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--coral);
    top: 50%;
    right: -5%;
    animation-delay: -5s;
}

.orb-3 {
    width: 250px;
    height: 250px;
    background: var(--purple-accent);
    bottom: 10%;
    left: 20%;
    animation-delay: -10s;
}

.orb-4 {
    width: 200px;
    height: 200px;
    background: var(--pink-light);
    top: 30%;
    left: 60%;
    animation-delay: -7s;
}

.orb-5 {
    width: 350px;
    height: 350px;
    background: var(--coral-light);
    bottom: -10%;
    right: 30%;
    animation-delay: -15s;
}

@keyframes float {
    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);
    }
}

/* Section Container */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 1;
}

/* Navigation */
.nav-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s var(--ease-out-expo);
}

.nav-header.scrolled {
    background: rgba(246, 245, 255, 0.85);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.navbar {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
}

.nav-link {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.25rem;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s var(--ease-out-expo);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.highlight {
    background: var(--gradient-primary);
    color: var(--white);
}

.nav-link.highlight::after {
    display: none;
}

.nav-cta {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    background: var(--dark);
    color: var(--white);
    border-radius: 100px;
    transition: all 0.3s var(--ease-out-expo);
}

.nav-cta:hover {
    background: var(--pink);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: all 0.3s var(--ease-out-expo);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease-out-expo);
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
}

.mobile-nav-links li {
    margin: 1.5rem 0;
}

.mobile-nav-links a {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    transition: color 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--pink);
}

.mobile-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 1rem !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: calc(var(--section-padding) + 4rem) 0 var(--section-padding);
    position: relative;
    overflow: hidden;
}

.hero-mesh {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: 0;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content > .hero-image {
    order: -1; /* Image on left */
}

.hero-content > .hero-text {
    order: 1; /* Text on right */
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 1px solid rgba(30, 64, 175, 0.2);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 100px;
    border: none;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-primary svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-primary:hover svg {
    transform: translateX(4px);
}

.btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid transparent;
}

.btn-secondary:hover {
    border-color: var(--pink);
    color: var(--pink);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--pink);
    color: var(--pink);
}

.btn-outline:hover {
    background: var(--pink);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Motto */
.hero-motto {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.motto-line {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--text-muted);
    opacity: 0.3;
}

.motto-text {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-frame {
    position: relative;
    width: 100%;
    max-width: 450px;
}

.frame-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--pink);
    border-radius: 20px;
    z-index: 0;
}

.profile-img {
    position: relative;
    width: 100%;
    border-radius: 20px;
    z-index: 1;
}

.image-glow {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100px;
    background: var(--gradient-primary);
    filter: blur(60px);
    opacity: 0.4;
    z-index: 0;
}

/* Floating Stats */
.floating-stats {
    position: absolute;
    bottom: 15%;
    right: -60px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10;
}

.stat-card {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
    animation: pulse 4s ease-in-out infinite;
}

.stat-card:nth-child(2) {
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.scroll-dot {
    width: 4px;
    height: 8px;
    background: var(--pink);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(12px);
        opacity: 0.3;
    }
}

/* Section Headers */
.section-label {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
}

.section-header.centered {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header.centered .section-subtitle {
    margin: 0 auto;
}

/* About Section */
.about-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.strengths-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.strength-card {
    background: var(--purple-bg);
    padding: 2rem;
    border-radius: 20px;
    transition: all 0.4s var(--ease-out-expo);
}

.strength-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.strength-card .card-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    color: var(--pink);
}

.strength-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.strength-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Advisor Section */
.advisor-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.section-mesh {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.5;
}

.advisor-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.advisor-text .section-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.advisor-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 500;
}

.feature-icon {
    color: var(--pink);
    font-weight: 700;
}

.advisor-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.investment-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s var(--ease-out-expo);
}

.investment-card:hover {
    transform: translateY(-8px) rotateX(2deg);
    box-shadow: var(--shadow-lg);
}

.investment-card .card-header {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.investment-card .card-logo {
    max-height: 60px;
    max-width: 100%;
    object-fit: contain;
}

.card-icon-placeholder {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    color: var(--white);
}

.investment-card h4 {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.card-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--purple-bg);
    border-radius: 100px;
    font-size: 0.75rem;
    color: var(--purple-accent);
    margin-bottom: 0.75rem;
}

.investment-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.card-link {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pink);
    transition: color 0.3s ease;
}

.card-link:hover {
    color: var(--coral);
}

/* Speaker Section */
.speaker-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.speaker-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
}

.speaker-card {
    background: var(--purple-bg);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out-expo);
}

.speaker-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.speaker-card.main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.speaker-image {
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
}

.speaker-image.no-image {
    background: var(--gradient-primary);
    min-height: 200px;
}

.speaker-tag {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--gradient-primary);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

.speaker-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.speaker-content p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.speaker-card:not(.main) .speaker-icon {
    width: 64px;
    height: 64px;
    color: var(--pink);
    margin-bottom: 1.5rem;
}

.speaker-card:not(.main) h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.speaker-card:not(.main) p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Mayor Section */
.mayor-section {
    padding: calc(var(--section-padding) * 1.5) 0;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.mayor-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    z-index: 0;
}

.mayor-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.05;
}

.mayor-content {
    position: relative;
    z-index: 1;
    color: var(--white);
}

.mayor-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    margin-bottom: 2rem;
}

.mayor-badge span {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.mayor-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.mayor-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.mayor-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.mayor-stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
}

.stat-desc {
    font-size: 0.875rem;
    opacity: 0.8;
}

.btn-mayor {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    background: var(--white);
    color: var(--pink);
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 100px;
    border: none;
    transition: all 0.3s var(--ease-out-expo);
}

.btn-mayor:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.btn-mayor svg {
    transition: transform 0.3s var(--ease-out-expo);
}

.btn-mayor:hover svg {
    transform: translateX(4px);
}

/* Ventures Section */
.ventures-section {
    padding: var(--section-padding) 0;
    background: var(--purple-bg);
}

/* Constellation */
.ventures-constellation {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 4rem;
}

.constellation-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    box-shadow: var(--shadow-glow);
}

.constellation-orbit {
    position: absolute;
    inset: 0;
    border: 2px dashed rgba(255, 75, 137, 0.2);
    border-radius: 50%;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(140px) rotate(calc(-1 * var(--angle)));
}

.node-label {
    display: block;
    padding: 0.5rem 1rem;
    background: var(--white);
    border-radius: 100px;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    animation: counterRotate 30s linear infinite;
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

/* Venture Cards */
.ventures-grid {
    display: grid;
    gap: 3rem;
}

.venture-category {
    background: var(--white);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
}

.category-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--purple-bg);
}

.venture-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.venture-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--purple-bg);
    border-radius: 12px;
    transition: all 0.3s var(--ease-out-expo);
}

.venture-card:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.venture-card:hover * {
    color: var(--white) !important;
}

.venture-card.featured {
    background: var(--gradient-primary);
}

.venture-card.featured * {
    color: var(--white) !important;
}

.venture-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--pink) !important;
    flex-shrink: 0;
}

.venture-logo {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    padding: 4px;
}

.venture-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.venture-card:hover .venture-icon,
.venture-card.featured .venture-icon {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white) !important;
}

.venture-card:hover .venture-logo,
.venture-card.featured .venture-logo {
    background: rgba(255, 255, 255, 0.9);
}

.venture-info h4 {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.venture-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Media Section */
.media-section {
    padding: var(--section-padding) 0;
    background: var(--dark);
    color: var(--white);
}

.media-content {
    text-align: center;
}

.media-content .section-label {
    color: var(--coral);
}

.media-featured {
    margin-top: 2rem;
}

.forbes-badge {
    margin-bottom: 2rem;
}

.forbes-logo {
    width: 150px;
    margin: 0 auto;
    color: var(--white);
}

.media-quote {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    background: var(--purple-bg);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease-out-expo);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

.contact-mesh {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0.3;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-desc {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(8px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out-expo);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--dark);
    transition: color 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-4px);
}

.social-link:hover svg {
    color: var(--white);
}

/* Downloads */
.downloads h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.download-links {
    display: flex;
    gap: 1rem;
}

.download-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.download-link svg {
    width: 18px;
    height: 18px;
    color: var(--pink);
}

.download-link:hover {
    background: var(--pink);
    color: var(--white);
}

.download-link:hover svg {
    color: var(--white);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: var(--purple-bg);
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--pink);
    background: var(--white);
}

.form-group select {
    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='%236b5f78' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.form-success.hidden {
    display: none;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.success-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-col a {
    display: block;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--pink);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Reveal Animations */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-out-expo);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1200px) {
    .strengths-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .advisor-content {
        grid-template-columns: 1fr;
    }

    .advisor-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .venture-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .nav-links, .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-motto {
        justify-content: center;
    }

    .floating-stats {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }

    .speaker-grid {
        grid-template-columns: 1fr;
    }

    .speaker-card.main {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 150px);
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery-item.tall {
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    body {
        cursor: auto;
    }

    .cursor-dot, .cursor-ring {
        display: none;
    }

    .strengths-grid {
        grid-template-columns: 1fr;
    }

    .advisor-cards {
        grid-template-columns: 1fr;
    }

    .mayor-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .venture-cards {
        grid-template-columns: 1fr;
    }

    .ventures-constellation {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
    }

    .download-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .mayor-title {
        font-size: 2rem;
    }
}

/* ==================== DISTRIBUTED IMAGES LAYOUT ==================== */

/* About Section Split Layout */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.about-text-content .section-header {
    text-align: left;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-top: 1.5rem;
}

.about-feature-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.about-feature-images img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease;
}

.about-feature-images img:hover {
    transform: translateY(-8px);
}

/* Advisor Inline Image */
.advisor-image-inline {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
}

.advisor-image-inline img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

/* Speaker Section Intro */
.speaker-intro {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.speaker-intro-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15);
}

.speaker-intro-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.speaker-intro-text .section-header {
    text-align: left;
}

/* Highlight Banner (replaces Gallery) */
.highlight-banner {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, rgba(30, 64, 175, 0.05) 100%);
}

.highlight-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.highlight-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.highlight-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: transform 0.4s ease;
}

.highlight-images img:hover {
    transform: scale(1.03);
}

.highlight-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.highlight-text p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Responsive for distributed images */
@media (max-width: 992px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image img {
        height: 300px;
    }

    .about-text-content .section-header {
        text-align: center;
    }

    .about-description {
        text-align: center;
    }

    .about-feature-images {
        grid-template-columns: 1fr;
    }

    .speaker-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .speaker-intro-text .section-header {
        text-align: center;
    }

    .highlight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-images {
        grid-template-columns: repeat(3, 1fr);
    }

    .highlight-text {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .about-feature-images img {
        height: 220px;
    }

    .highlight-images {
        grid-template-columns: 1fr 1fr;
    }

    .highlight-images img:last-child {
        display: none;
    }

    .highlight-images img {
        height: 160px;
    }
}

@media (max-width: 480px) {
    .highlight-images {
        grid-template-columns: 1fr;
    }

    .highlight-images img:nth-child(2) {
        display: none;
    }

    .highlight-images img {
        height: 200px;
    }
}
