Statement of Cash Flows

display: flex; flex-direction: column; align-items: center; text-align: center; } .org-card:hover { transform: translateY(-2px); box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1); } .leadership-card { border-left: 4px solid #000; background: linear-gradient(to bottom, #ffffff, #f9fafb); border: 1px solid #e5e7eb; border-top-width: 6px; /* Changed to top for centered look */ border-left-width: 1px; /* Centering styles added */ display: flex; flex-direction: column; align-items: center; text-align: center; } /* Modern Segmented Control */ .segmented-control { background: linear-gradient(90deg, #eef2ff 0%, #fff7ed 100%); padding: 6px; border-radius: 9999px; display: inline-flex; position: relative; cursor: pointer; user-select: none; box-shadow: inset 0 1px 0 rgba(255,255,255,0.6); } .segmented-control input { display: none; } .segmented-control .option { padding: 10px 22px; border-radius: 9999px; font-size: 0.95rem; font-weight: 600; color: #6b7280; z-index: 10; transition: color 0.18s ease, transform 0.12s ease; position: relative; will-change: transform, color; } .segmented-control .option:hover { color: #111827; transform: translateY(-1px); } .segmented-control .selection-bg { position: absolute; /* size and position are computed in JS so the knob can fully cover the option area (pill shape) */ left: 6px; top: 50%; transform: translateY(-50%); background: linear-gradient(180deg,#34d399 0%, #059669 100%); /* brand green */ border-radius: 9999px; border: 1px solid rgba(5,150,105,0.15); box-shadow: 0 10px 30px rgba(5,150,105,0.18); transition: left 220ms cubic-bezier(.2,.9,.2,1), width 220ms cubic-bezier(.2,.9,.2,1), height 220ms cubic-bezier(.2,.9,.2,1), top 220ms cubic-bezier(.2,.9,.2,1), box-shadow 200ms ease; z-index: 2; /* stays below text (options have z-index:10) */ pointer-events: none; } /* Particle elements used for micro-interaction */ .particle { position: absolute; border-radius: 9999px; pointer-events: none; will-change: transform, opacity; mix-blend-mode: normal; box-shadow: 0 6px 14px rgba(0,0,0,0.08); } /* States based on JS toggling classes */ .segmented-control .option.active { color: #ffffff; transform: scale(1.03); font-weight: 700; text-shadow: 0 1px 0 rgba(0,0,0,0.15); } .segmented-control .option:focus-visible { outline: 3px solid rgba(99,102,241,0.16); outline-offset: 3px; border-radius: 9999px; } /* Small variant for compact control with short labels */ .segmented-control--small .option { padding: 6px 12px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.02em; } .segmented-control--small .selection-bg { /* smaller visual baseline; actual size computed in JS */ height: 34px; transition: left 200ms cubic-bezier(.2,.9,.2,1), width 200ms cubic-bezier(.2,.9,.2,1), height 200ms cubic-bezier(.2,.9,.2,1), top 200ms cubic-bezier(.2,.9,.2,1); } /* Matrix Styles */ .matrix-header { cursor: pointer; user-select: none; transition: background-color 0.2s; } .matrix-header:hover { background-color: #f3f4f6; } .matrix-cell { font-size: 0.75rem; padding: 0.5rem; border-left: 1px solid #f3f4f6; vertical-align: middle; } /* Status Badges */ .status-badge { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; padding: 4px 6px; border-radius: 6px; font-weight: 600; width: 100%; min-height: 40px; text-align: center; font-size: 0.7rem; transition: all 0.2s; } .status-primary-envision { background-color: #ecfdf5; /* Green-50 */ color: #065f46; /* Green-800 */ border: 1px solid #a7f3d0; } .status-oversight-envision { background-color: #f0fdf4; /* Green-50 lighter */ color: #047857; /* Green-700 */ border: 1px dashed #a7f3d0; } .status-primary-flow { background-color: #eff6ff; /* Blue-50 */ color: #1e40af; /* Blue-800 */ border: 1px solid #bfdbfe; } .status-oversight-flow { background-color: #f0f9ff; /* Blue-50 lighter */ color: #0369a1; /* Blue-700 */ border: 1px dashed #bae6fd; } .status-inactive { color: #9ca3af; font-weight: normal; background-color: #f9fafb; } /* Mobile Matrix Cards */ .mobile-task-card { transition: all 0.3s ease; border-left: 6px solid transparent; } .mobile-task-card.border-envision { border-left-color: #059669; } .mobile-task-card.border-flow { border-left-color: #0284c7; } /* Sticky Tabs for Mobile */ .sticky-tabs { position: sticky; top: 64px; /* Height of nav */ z-index: 40; background: rgba(255,255,255,0.95); backdrop-filter: blur(4px); border-bottom: 1px solid #e5e7eb; } /* Carousel */ .fade-out { opacity: 0; } .fade-in { opacity: 1; } .phase-display { transition: opacity 0.3s ease-in-out; } /* Accordion Transition */ .accordion-content { transition: max-height 0.3s ease-out, opacity 0.3s ease-out; max-height: 2000px; /* Arbitrary large number */ opacity: 1; overflow: hidden; } .accordion-content.collapsed { max-height: 0; opacity: 0; } .chevron-icon { transition: transform 0.3s ease; } .chevron-icon.rotate-180 { transform: rotate(180deg); } /* Toggle highlight pulse animation */ @keyframes slow-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 0.6; } } @keyframes color-flow { 0% { border-color: #14b8a6; background: rgba(20, 184, 166, 0.08); } 25% { border-color: #ec4899; background: rgba(236, 72, 153, 0.08); } 50% { border-color: #f97316; background: rgba(249, 115, 22, 0.08); } 75% { border-color: #ea580c; background: rgba(234, 88, 12, 0.08); } 100% { border-color: #14b8a6; background: rgba(20, 184, 166, 0.08); } } .toggle-highlight { animation: slow-pulse 1s ease infinite; } .toggle-highlight-border { animation: slow-pulse 1s ease infinite, color-flow 4s linear infinite; border-width: 1.5px; } .toggle-highlight-bg { animation: slow-pulse 1s ease infinite, color-flow 4s linear infinite; } .toggle-highlight.hidden { display: none; }

Organization Chart

Key stakeholders and roles for project execution.

Founder

Adam Neumann

Visionary direction & overarching mission.

Executive Team

Javier Barrios

Head of Development

Strategy & Master Planning

Deepak D. Prabakaran

Head of Design

External Architect & Engineering Lead

Jeffrey Davis

Bear Dev (Consultant)

Strategic Execution Advisor

Mark Lapidus

Head of Real Estate

Real Estate Leadership

Development Team

Mickey Swisa

Head of Construction

Owner-side Construction Advisor

Ben Feldman

Development Executive

Primary Point of Contact (South FL)

Tom Callagee

Real Estate Investments

Underwriting & Asset Management

Laura Christovich

Head of Architectural Design

Owner-side Product & Design Lead

Guillaume Donon

Project Controller

Property-level Accounting

Envision Construction

Development Manager

Delivery, Trade Management, Safety & QC

Approval Workflow

Select the operational structure to see the workflow logic.

Envision acts as
DM
GC

Phase Collaboration

Project lifecycle milestones.

Responsibility Matrix

Interactive roles & responsibilities breakdown.

Envision
Flow
Develops
Monitors

Deliverables

Outputs, reviews, and signoffs.

© 2025 Flow Real Estate | Development Workflow Framework | Version 5.0

Redirecting… Redirecting to flow-workflow_V5.html.