:root {
    /* Brand Colors */
    --color-primary: #004085;
    /* Darker, higher contrast blue */
    /* Deep Professional Blue */
    --color-primary-light: #e6f0fa;
    --color-secondary: #cc0000;
    /* Optimism Red */
    --color-secondary-soft: #ffe5e5;

    /* Neutrals */
    --color-dark: #0f172a;
    --color-text-main: #334155;
    --color-text-muted: #64748b;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    --color-border: #e2e8f0;

    /* Interface */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --border-radius-lg: 16px;
    --border-radius-md: 8px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

    /* Category Colors */
    --color-pink: #db2777;
    --color-orange: #ea580c;
    --color-blue: #004d99;
    --color-teal: #0d9488;
    --color-purple: #9333ea;
    --color-green: #16a34a;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--color-dark);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- Gradient Text --- */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), #3b82f6);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white) !important;
    /* Force white text for visibility */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #003366;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 77, 153, 0.2);
}

.btn-secondary {
    background-color: var(--color-light);
    color: var(--color-dark);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background-color: #e2e8f0;
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    background: var(--color-white);
    /* Solid white background for max contrast */
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: var(--color-primary-light);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-muted);
    font-size: 0.9rem;
    padding: 8px 16px;
}

.btn-ghost:hover {
    color: var(--color-primary);
    background: var(--color-light);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.brand-optimust {
    color: var(--color-primary);
}

.brand-intelligence {
    color: var(--color-secondary);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links li a {
    font-weight: 500;
    color: var(--color-text-main);
}

.nav-links li a:hover {
    color: var(--color-primary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding-top: 160px;
    padding-bottom: 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 32px;
    font-style: italic;
}

.hero-actions {
    display: flex;
    gap: 16px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.badge-outline {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
}

.badge-primary {
    background: var(--color-primary-light);
    color: var(--color-primary);
}

.badge-dark {
    background: var(--color-dark);
    color: white;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.abstract-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
}

.shape-1 {
    top: -20px;
    right: 20px;
    width: 300px;
    height: 300px;
    background: rgba(0, 77, 153, 0.15);
}

.shape-2 {
    bottom: 20px;
    left: 20px;
    width: 200px;
    height: 200px;
    background: rgba(204, 0, 0, 0.1);
}

.glass-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 280px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translate(-50%, -50%) translateY(0px);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }

    100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
}

/* --- Sections --- */
.section {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--color-light);
}

.section-header {
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

/* Connect Showcase */
.connect-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.feature-list li {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.check-icon {
    color: var(--color-primary);
    background: var(--color-primary-light);
    border-radius: 50%;
    padding: 4px;
}

/* Mockup */
.app-interface-mockup {
    background: var(--color-white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    overflow: hidden;
}

.app-header {
    background: var(--color-light);
    padding: 12px 16px;
    display: flex;
    gap: 8px;
    border-bottom: 1px solid var(--color-border);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red {
    background: #ff5f57;
}

.yellow {
    background: #ffbd2e;
}

.green {
    background: #28c940;
}

.app-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: linear-gradient(180deg, #fff 0%, #fefefe 100%);
}

.chat-bubble {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 0.95rem;
}

.chat-bubble.left {
    background: var(--color-light);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.chat-bubble.right {
    background: var(--color-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.bubble-meta {
    display: block;
    font-size: 0.75rem;
    margin-top: 4px;
    opacity: 0.8;
}

.insight-chip {
    align-self: center;
    background: #fffbeb;
    color: #92400e;
    border: 1px solid #fcd34d;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 8px;
}

/* Connect Showcase Images */
.image-showcase {
    position: relative;
    padding: 20px;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.rounded-lg {
    border-radius: var(--border-radius-lg);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.main-interface {
    position: relative;
    z-index: 1;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.context-overlay {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 60%;
    z-index: 2;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    background: white;
    /* Ensure bg is opaque */
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: float-delayed 7s ease-in-out infinite;
}

@keyframes float-delayed {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .context-overlay {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: -20px;
        margin-left: 20px;
    }
}

/* Logo */
.nav-logo-img {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.brand-logo {
    display: flex;
    align-items: center;
}

.hero-logo-img {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

/* Ecosystem Colors & Grid */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.bg-purple-soft {
    background: #f3e8ff;
}

.text-purple {
    color: #9333ea;
}

.bg-green-soft {
    background: #dcfce7;
}

.text-green {
    color: #16a34a;
}

.bg-orange-soft {
    background: #ffedd5;
}

.text-orange {
    color: #ea580c;
}

.bg-teal-soft {
    background: #ccfbf1;
}

.text-teal {
    color: #0d9488;
}

.bg-pink-soft {
    background: #fce7f3;
}

.text-pink {
    color: #db2777;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.card-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.bg-blue-soft {
    background: var(--color-primary-light);
}

.bg-red-soft {
    background: var(--color-secondary-soft);
}

.product-tagline {
    text-transform: uppercase;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 8px;
}

.micro-features {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.micro-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px;
}

.dot-indicator {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    display: inline-block;
}

.bg-primary {
    background-color: var(--color-primary);
}

.badge-sm {
    font-size: 0.7rem;
    padding: 4px 8px;
}

.badge-pink {
    background: #fce7f3;
    color: #db2777;
    border: 1px solid #fbcfe8;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-primary);
    margin-top: 12px;
}

.btn-link:hover {
    text-decoration: underline;
}

.text-sm {
    font-size: 16px;
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.belief-item {
    background: white;
    padding: 24px;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform 0.3s ease;
}

.belief-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
}

.belief-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    /* Use primary blue for high contrast */
    margin-bottom: 20px;
    opacity: 0.9;
}

.belief-item h4 {
    color: var(--color-dark);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.belief-item p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

/* Utilities */
.mt-2 {
    margin-top: 8px;
}

.mt-4 {
    margin-top: 16px;
}

.mr-1 {
    margin-right: 4px;
}

.mr-2 {
    margin-right: 8px;
}

.text-sm {
    font-size: 0.9em;
    vertical-align: middle;
}

.contact-details p {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.contact-details .material-icons-round {
    color: var(--color-primary);
}

/* Research Section */
.research-card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    display: flex;
    gap: 32px;
    align-items: center;
    max-width: 900px;
    margin: 32px auto 0;
    /* Added top margin */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.research-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-primary);
}

.research-icon {
    width: 80px;
    height: 80px;
    background: #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    flex-shrink: 0;
}

.research-icon .material-icons-round {
    font-size: 36px;
}

.research-content h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.research-tags {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.tag {
    background: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    border: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .research-card {
        flex-direction: column;
        text-align: center;
    }

    .research-tags {
        justify-content: center;
    }
}

/* Founder Section */
.section-founder {
    background: var(--color-white);
}

.founder-grid {
    display: flex;
    align-items: center;
    gap: 64px;
}

/* --- Featured Intelligence --- */
.section-featured {
    padding-bottom: 60px;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.featured-card {
    position: relative;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    background-size: cover;
    background-position: center;
    color: white;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 1px solid var(--color-border);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 60%, rgba(15, 23, 42, 0.1) 100%);
    z-index: 1;
}

.featured-card .featured-content {
    position: relative;
    z-index: 2;
}

.featured-card h3 {
    color: white;
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.featured-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
}

.featured-card:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.grant-agent {
    background-image: url('../assets/gallery/grant-agent-dashboard.png');
    background-size: cover;
    background-position: center;
}

.think-write {
    background-image: url('../assets/gallery/thinkwrite-editor-main.png');
    background-size: cover;
    background-position: center;
}

.life-review {
    background-image: url('../assets/gallery/life-review-life-map.png');
    background-size: cover;
    background-position: center;
}

.badge-accent {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

/* --- Ecosystem Categories --- */
.category-group {
    margin-top: 80px;
}

.category-title {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    color: var(--color-dark);
    border-bottom: 2px solid var(--color-light);
    padding-bottom: 12px;
}

.category-title .material-icons-round {
    color: var(--color-primary);
    background: var(--color-primary-light);
    padding: 8px;
    border-radius: 12px;
}

.mt-5 {
    margin-top: 80px;
}

/* --- Product Cards --- */
.card-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    align-items: center;
}

.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card .card-body {
    flex-grow: 1;
}

/* --- Split-Pane Project Modal --- */
.project-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: #fdfdfd;
    width: 95%;
    max-width: 1200px;
    height: 90vh;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.98);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-modal.active .modal-container {
    transform: scale(1);
}

.modal-split-layout {
    display: grid;
    grid-template-columns: 45% 55%;
    height: 100%;
}

/* Media Column (Left) */
.modal-media-column {
    background: #1e293b;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Shows full image */
    background: #0f172a;
    transition: opacity 0.4s ease;
}

/* Content Column (Right) */
.modal-content-column {
    height: 100%;
    overflow-y: auto;
    background: white;
    position: relative;
}

.modal-content-column::-webkit-scrollbar {
    width: 8px;
}

.modal-content-column::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.modal-content-column::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

.modal-content-inner {
    padding: 60px 48px 80px;
    max-width: 700px;
    margin: 0 auto;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-header h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-top: 8px;
    color: var(--color-dark);
}

.modal-header .badge {
    background: var(--color-primary-light);
    color: var(--color-primary);
    padding: 6px 14px;
    font-size: 0.85rem;
    font-weight: 700;
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 100;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    color: var(--color-text-main);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: var(--color-primary);
    color: white;
    transform: rotate(90deg);
}

/* Modal Content Styling */
.modal-body h4 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.25rem;
    color: var(--color-primary);
    border-left: 4px solid var(--color-primary);
    padding-left: 16px;
}

.modal-body p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 24px;
    color: var(--color-text-main);
}

.modal-body ul {
    background: #f8fafc;
    padding: 24px 24px 24px 44px;
    border-radius: 12px;
    margin-bottom: 32px;
}

.modal-body li {
    margin-bottom: 12px;
}

/* Gallery Section inside Content Column */
.modal-gallery-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--color-border);
}

.gallery-strip {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 16px;
    margin-top: 16px;
}

.gallery-thumb {
    flex: 0 0 100px;
    height: 70px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.2s;
}

.gallery-thumb:hover,
.gallery-thumb.active {
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Tech Spec Grid */
.tech-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding: 24px;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* Responsive Overrides (Stacked) */
@media (max-width: 900px) {
    .modal-split-layout {
        grid-template-columns: 1fr;
        grid-template-rows: 250px 1fr;
    }

    .modal-media-column {
        height: 250px;
        order: -1;
    }

    .modal-content-column {
        height: auto;
    }

    .close-modal {
        top: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.9);
        color: var(--color-dark);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .modal-content-inner {
        padding: 32px 24px 60px;
    }
}

/* Card Visual Preview */
.card-visual {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
    border-bottom: 5px solid white;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .card-visual img {
    transform: scale(1.08);
}

.card-visual::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(to top, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0));
    z-index: 1;
}

.card-icon-wrapper {
    z-index: 2;
}

.founder-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-img-real {
    width: 100%;
    max-width: 350px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
    border: 4px solid white;
}

.founder-content {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-secondary);
    border-left: 4px solid var(--color-secondary);
    padding-left: 24px;
    font-style: italic;
}

/* Footer */
.footer {
    background: var(--color-dark);
    color: white;
    padding: 80px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-links h4 {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
}

/* Tablet & Mobile */
@media (max-width: 900px) {

    .hero-content,
    .connect-showcase,
    .grid-2,
    .founder-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-visual {
        display: none;
    }

    /* Hide complicated visual on mobile for simplicity */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 24px;
        border-bottom: 1px solid var(--color-border);
    }

    .nav-links.active {
        display: flex;
    }

    .founder-grid {
        direction: rtl;
    }

    /* Quick hack to rearrange? No, better use Flex order if needed */
    .founder-grid {
        display: flex;
        flex-direction: column-reverse;
    }
}