<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Arc | Meeting Planner</title>
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #F3F6F4;
  --surface: #FFFFFF;
  --header-bg: #002B1D;
  --header-mid: #003D2A;
  --accent: #00916A;
  --accent-light: #E0F4EE;
  --exec-gold: #B8860B;
  --exec-bg: #FFF8E1;
  --completed: #4A9470;
  --completed-bg: #EAF5EF;
  --scheduled: #2E7DC4;
  --scheduled-bg: #E8F2FC;
  --waiting-bg: #FFF3E0;
  --high: #C84B1E;
  --border: #D8E8E0;
  --border-strong: #B8D0C4;
  --text-primary: #192820;
  --text-secondary: #4E6B5E;
  --text-muted: #8BA89A;
  font-size: 14px;
}

body {
  font-family: system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* â”€â”€â”€ HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#app-header {
  background: var(--header-bg);
  color: white;
  flex-shrink: 0;
  z-index: 100;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 16px;
  flex-wrap: wrap;
}

.header-brand {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.header-logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 11px;
  font-weight: normal;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border-right: 1px solid rgba(255,255,255,0.2);
  padding-right: 12px;
}

.header-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 15px;
  font-weight: normal;
  color: #FFFFFF;
  letter-spacing: 0.02em;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-right: 2px;
}

select.filter-select {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: rgba(255,255,255,0.9);
  font-size: 12px;
  padding: 5px 28px 5px 8px;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  max-width: 200px;
}

select.filter-select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }

.quick-filters {
  display: flex;
  gap: 4px;
}

.qf-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: rgba(255,255,255,0.7);
  font-size: 11px;
  padding: 5px 10px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.qf-btn:hover { background: rgba(255,255,255,0.15); color: white; }
.qf-btn.active { background: var(--accent); border-color: var(--accent); color: white; }

/* Tabs */
.tab-bar {
  display: flex;
  gap: 0;
  padding: 0 20px;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-family: inherit;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 14px;
  cursor: pointer;
  transition: color 0.15s, border-color 0.15s;
}

.tab-btn:hover { color: rgba(255,255,255,0.8); }
.tab-btn.active { color: white; border-bottom-color: var(--accent); }

/* â”€â”€â”€ MAIN CONTENT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.snapshot-note { max-width: 1200px; margin: 8px auto 0; padding: 6px 20px; font-size: 11px; color: var(--text-muted, #888); font-style: italic; }
#main-content {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

/* â”€â”€â”€ WEEK NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.view-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.view-nav-title {
  font-family: Georgia, serif;
  font-size: 14px;
  color: var(--text-primary);
}

.view-nav-title span {
  color: var(--text-secondary);
  font-size: 12px;
  font-family: system-ui, sans-serif;
  margin-left: 8px;
}

.nav-arrows {
  display: flex;
  gap: 4px;
}

.nav-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text-secondary);
  cursor: pointer;
  font-size: 14px;
  padding: 4px 10px;
  transition: background 0.12s;
}

.nav-btn:hover { background: var(--bg); }

/* â”€â”€â”€ OVERVIEW / LIST VIEW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.overview-container {
  padding: 16px 20px;
  flex: 1;
}

.overview-summary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}

.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
}

.summary-card .sc-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.summary-card .sc-value {
  font-family: Georgia, serif;
  font-size: 24px;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.summary-card .sc-sub {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 2px;
}

.summary-card.highlight { border-left: 3px solid var(--accent); }
.summary-card.gold { border-left: 3px solid var(--exec-gold); }

/* Meeting cards grid */
.meetings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 10px;
}

.meeting-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: box-shadow 0.15s;
  min-width: 0;
  overflow-wrap: anywhere;
}
.meeting-card > * { min-width: 0; max-width: 100%; }

.meeting-card:hover { box-shadow: 0 2px 8px rgba(0,65,42,0.08); }

.mc-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px 8px;
}

.mc-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
  text-wrap: balance;
  flex: 1 1 160px;
  min-width: 0;
  overflow-wrap: anywhere;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  flex: 0 1 auto;
  justify-content: flex-end;
  max-width: 100%;
}

.badge {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 5px;
  border-radius: 3px;
  white-space: nowrap;
  font-weight: 600;
}

.badge-exec { background: var(--exec-bg); color: var(--exec-gold); border: 1px solid #EDD580; }
.badge-high { background: #FDEEE9; color: var(--high); border: 1px solid #F5B8A5; }
.badge-completed { background: var(--completed-bg); color: var(--completed); }
.badge-scheduled { background: var(--scheduled-bg); color: var(--scheduled); }
.badge-waiting { background: var(--waiting-bg); color: #C87500; }
.badge-recurring { background: #F0EBF9; color: #6B4FA0; }
.badge-ooo { background: #F5F0FF; color: #7B5EA7; }

.mc-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: var(--text-secondary);
}

.mc-meta-item {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.mc-meta-item svg { opacity: 0.6; }

.mc-audience {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 2px;
}

.audience-chip {
  font-size: 10px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 1px 6px;
  color: var(--text-secondary);
}

.mc-organizer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* â”€â”€â”€ WEEKLY VIEW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.week-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  flex: 1;
  overflow: auto;
  min-height: 0;
}

.day-col {
  background: var(--surface);
  display: flex;
  flex-direction: column;
  min-width: 160px;
}

.day-header {
  padding: 10px 12px;
  border-bottom: 2px solid var(--border);
  background: var(--header-mid);
  color: white;
  position: sticky;
  top: 0;
  z-index: 2;
}

.day-name {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.day-date {
  font-family: Georgia, serif;
  font-size: 18px;
  color: white;
  line-height: 1.2;
}

.day-date.today { color: #6EE8BC; }

.day-meetings {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--bg);
}

.day-empty {
  padding: 12px;
  color: var(--text-muted);
  font-size: 11px;
  font-style: italic;
  text-align: center;
}

.week-meeting-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  transition: box-shadow 0.12s;
  cursor: default;
}

.week-meeting-card:hover { box-shadow: 0 1px 4px rgba(0,65,42,0.1); }
.week-meeting-card.exec-card { border-left: 3px solid var(--exec-gold); }
.week-meeting-card.high-card { border-left: 3px solid var(--high); }
.week-meeting-card.completed-card { opacity: 0.7; border-left: 3px solid var(--completed); }

.wmc-title {
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.3;
}

.wmc-meta {
  font-size: 10px;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wmc-badges { display: flex; gap: 3px; flex-wrap: wrap; }

/* â”€â”€â”€ MONTHLY VIEW â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.month-grid-wrap {
  padding: 16px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.month-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  flex: 1;
}

.month-header-row {
  display: contents;
}

.month-day-name {
  background: var(--header-mid);
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 10px;
  text-align: center;
}

.month-cell {
  background: var(--surface);
  padding: 6px 8px;
  min-height: 90px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  overflow: hidden;
}

.month-cell.other-month { background: #F8FAF9; }
.month-cell.today-cell { background: #F0FAF6; }

.cell-date {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.cell-date.today-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-size: 10px;
}

.month-meeting-pill {
  font-size: 10px;
  line-height: 1.2;
  padding: 2px 5px;
  border-radius: 3px;
  background: #E8F5F0;
  color: #1A5C42;
  border-left: 2px solid var(--accent);
  cursor: default;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.month-meeting-pill.exec-pill { background: var(--exec-bg); border-color: var(--exec-gold); color: #7A5900; }
.month-meeting-pill.high-pill { background: #FDEEE9; border-color: var(--high); color: #8B2C0C; }
.month-meeting-pill.completed-pill { background: var(--completed-bg); border-color: var(--completed); color: #2E6B4A; opacity: 0.75; }
.month-meeting-pill.ooo-pill { background: #F0EBF9; border-color: #9B7EC8; color: #5C3A8F; }

.cell-overflow {
  font-size: 9px;
  color: var(--text-muted);
  padding: 1px 5px;
}

/* â”€â”€â”€ EMPTY STATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.empty-state {
  padding: 40px;
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
}

/* â”€â”€â”€ MEETING COUNT STRIP â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.count-strip {
  padding: 8px 20px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.count-strip strong { color: var(--text-primary); }

/* Scroll containers */
.scroll-x { overflow-x: auto; }

/* --- DETAIL MODAL --- */
.meeting-card, .week-meeting-card, .month-meeting-pill { cursor: pointer; }
#modal-overlay { position: fixed; inset: 0; background: rgba(0,26,17,0.5); display: none; align-items: center; justify-content: center; z-index: 500; padding: 20px; }
#modal-overlay.open { display: flex; }
#modal-box { background: var(--surface); border-radius: 8px; max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto; box-shadow: 0 12px 40px rgba(0,26,17,0.3); }
.modal-header { background: var(--header-bg); color: white; padding: 16px 20px; border-radius: 8px 8px 0 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; position: sticky; top: 0; }
.modal-title { font-family: Georgia, serif; font-size: 17px; line-height: 1.3; text-wrap: balance; }
.modal-close { background: rgba(255,255,255,0.1); border: none; color: white; border-radius: 4px; width: 26px; height: 26px; cursor: pointer; font-size: 14px; flex-shrink: 0; }
.modal-close:hover { background: rgba(255,255,255,0.22); }
.modal-body { padding: 18px 20px; display: flex; flex-direction: column; gap: 14px; }
.modal-section .ms-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); margin-bottom: 4px; }
.modal-section .ms-value { font-size: 13px; color: var(--text-primary); line-height: 1.5; white-space: pre-wrap; }
.modal-meta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.modal-footer { padding: 12px 20px 18px; border-top: 1px solid var(--border); }
.airtable-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); text-decoration: none; font-weight: 600; }
.airtable-link:hover { text-decoration: underline; }

.section-header { font-family: Georgia, serif; font-size: 15px; color: var(--text-primary); margin: 20px 0 10px; padding-bottom: 6px; border-bottom: 2px solid var(--border-strong); display: flex; align-items: baseline; gap: 8px; }
.section-count { font-family: system-ui, sans-serif; font-size: 11px; color: var(--text-muted); font-variant-numeric: tabular-nums; }
.completed-grid .meeting-card { opacity: 0.72; }

.mc-purpose { font-size: 11px; color: var(--text-secondary); line-height: 1.45; border-left: 2px solid var(--border-strong); padding-left: 8px; }
.meeting-card.done-card { opacity: 0.65; }
.untagged-header { color: var(--text-muted); border-bottom-style: dashed; }

.ws-banner { font-family: Georgia, serif; font-size: 18px; color: white; background: var(--header-bg, #003F2D); border-radius: 6px; padding: 10px 16px; margin: 26px 0 4px; display: flex; align-items: baseline; gap: 10px; }
.ws-banner:first-child { margin-top: 14px; }
.ws-upcoming { background: #5B6770; }
.ws-banner .section-count { color: rgba(255,255,255,0.7); }


.badge-seq { background: #EAF3EF; color: var(--header-bg, #003F2D); border: 1px solid #BFD8CD; }

.team-drop { display: inline-block; position: relative; margin: 2px 3px 0 0; max-width: 100%; }
.team-toggle { max-width: 100%; white-space: normal; text-align: left; }
.team-toggle { cursor: pointer; font-family: inherit; }
.team-toggle:hover { border-color: var(--border-strong, #B8B6AC); }
.tt-caret { font-size: 8px; opacity: 0.7; }
.team-drop.open .tt-caret { transform: rotate(180deg); display: inline-block; }
.team-people { display: none; }
.team-drop.open .team-people { display: block; margin: 5px 0 3px 4px; padding: 6px 8px; background: #FAFAF7; border: 1px solid var(--border, #E4E2DA); border-radius: 6px; }
.tp-rep { display: block; font-size: 10px; font-weight: 700; color: var(--text-secondary, #555); margin: 6px 0 2px; text-transform: uppercase; letter-spacing: 0.04em; }
.tp-name { display: inline-block; font-size: 10px; padding: 1px 7px; margin: 2px 3px 2px 0; border-radius: 9px; background: #fff; border: 1px solid #E0DED4; color: #444; }
.tc-rep { font-weight: 700; }

.team-chip { display: inline-block; font-size: 10px; padding: 2px 8px; border-radius: 10px; background: #F0EFEA; border: 1px solid #DAD8CE; color: #555; margin: 2px 3px 0 0; }
.topic-context { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 10px; margin: 8px 0 12px; }
.tc-cell { background: var(--surface, #fff); border: 1px solid var(--border, #E4E2DA); border-radius: 6px; padding: 10px 12px; }
.tc-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--text-muted, #888); margin-bottom: 4px; }
.tc-value { font-size: 12px; line-height: 1.45; }
.tc-empty { color: var(--text-muted, #999); font-style: italic; }
.tc-edit { grid-column: 1 / -1; font-size: 11px; justify-self: end; margin-top: -4px; }
.subtopic-header { font-size: 12px; font-weight: 700; color: var(--text-secondary, #555); margin: 12px 0 6px; padding-left: 8px; border-left: 3px solid var(--accent, #17E88F); }
.roadmap { min-width: 1100px; margin-top: 12px; }
.rm-row { display: grid; gap: 0; align-items: center; margin-bottom: 3px; position: relative; }
.rm-head { position: sticky; top: 0; background: var(--bg, #F5F4F0); z-index: 5; margin-bottom: 8px; }
.rm-tick { font-size: 9px; color: var(--text-muted, #888); border-left: 1px solid var(--border-strong, #CFCDC4); padding: 2px 0 2px 4px; white-space: nowrap; overflow: hidden; }
.rm-topic { font-size: 11px; font-weight: 700; padding: 4px 10px 4px 0; color: var(--text-primary, #222); overflow-wrap: anywhere; }
.rm-today { grid-row: 1 / -1; border-left: 2px solid var(--accent, #17E88F); height: 100%; pointer-events: none; }
.rm-bar { grid-row: auto; font-size: 10px; line-height: 1.25; background: #DDEFE7; border: 1px solid #9CC8B4; border-left: 3px solid #17805B; border-radius: 3px; padding: 2px 5px; margin: 1px 0; white-space: nowrap; cursor: pointer; min-width: 0; position: relative; z-index: 1; }
.rm-bar:hover { z-index: 3; overflow: visible; }
.rm-dotlabel { position: absolute; left: 100%; top: 50%; transform: translateY(-50%); padding-left: 5px; font-size: 9px; color: var(--text-secondary, #555); white-space: nowrap; pointer-events: none; }
.rm-exec { border-left-color: #C99700; background: #F7EFD8; border-color: #E2CE96; }
.rm-done { opacity: 0.45; }
.rm-untagged { margin-top: 14px; }
.rm-untagged summary { font-size: 11px; color: var(--text-muted, #888); cursor: pointer; padding: 6px 0; }
.topic-about { margin: 6px 0 12px; }
.topic-about summary { font-size: 11px; color: var(--text-secondary, #555); cursor: pointer; }
.topic-about .tc-empty { font-style: italic; }
.topic-about .topic-context { margin-top: 8px; }
.cluster-context { margin: 4px 0 8px; }
.mv-chips { margin: 10px 0 4px; }
.mv-row { display: flex; gap: 14px; align-items: flex-start; background: var(--surface, #fff); border: 1px solid var(--border, #E4E2DA); border-radius: 6px; padding: 10px 14px; margin-bottom: 6px; cursor: pointer; }
.mv-row:hover { border-color: var(--border-strong, #B8B6AC); }
.mv-static { cursor: default; }
.mv-date { flex: 0 0 70px; font-size: 12px; font-weight: 700; color: var(--text-secondary, #555); font-variant-numeric: tabular-nums; }
.mv-soon { color: #B7791F; }
.mv-over { color: #C0392B; }
.mv-title { flex: 1; font-size: 13px; min-width: 0; overflow-wrap: anywhere; }
.mv-row { flex-wrap: wrap; }
.mv-links { overflow-wrap: anywhere; font-size: 11px; color: var(--text-muted, #888); margin-top: 3px; }
.mv-tags { flex: 0 0 auto; }

.mv-subhead { font-size: 12px; font-weight: 700; color: var(--text-secondary, #555); margin: 10px 0 6px; padding-left: 8px; border-left: 3px solid var(--exec-gold, #C99700); display: flex; align-items: baseline; gap: 8px; }
a.mv-row:hover { border-color: var(--border-strong, #B8B6AC); }

.recap-card { background: var(--surface, #fff); border: 1px solid var(--border, #E4E2DA); border-radius: 6px; padding: 12px 14px; display: flex; flex-direction: column; gap: 7px; min-width: 0; overflow-wrap: anywhere; cursor: pointer; }
.recap-card:hover { box-shadow: 0 2px 8px rgba(0,65,42,0.08); }
.recap-empty { opacity: 0.75; }
.recap-details summary { font-size: 11px; font-weight: 700; color: var(--text-secondary, #555); cursor: pointer; }
.recap-list { margin: 4px 0 10px 18px; padding: 0; font-size: 11.5px; line-height: 1.5; color: var(--text-primary, #222); }
.recap-list li { margin-bottom: 3px; }

details.ws-sec > summary, details.sub-sec > summary { cursor: pointer; list-style: none; }
details.ws-sec > summary::-webkit-details-marker, details.sub-sec > summary::-webkit-details-marker { display: none; }
details.ws-sec:not([open]) > summary.section-header { opacity: 0.75; }
.summary-card:hover { border-color: var(--border-strong, #B8B6AC); }
.chip-click { cursor: pointer; }
.chip-click:hover { border-color: var(--border-strong, #B8B6AC); text-decoration: none; }
.mv-empty { font-size: 12px; color: var(--text-muted, #888); padding: 8px 2px 14px; }




</style>
</head>
<body>

<div id="app-header">
  <div class="header-top">
    <div class="header-brand">
      <span class="header-logo">CBRE</span>
      <span class="header-title">Project Arc &mdash; Meeting Planner</span>
    </div>
    <div class="header-controls">
      <span class="filter-label">Person</span>
      <select class="filter-select" id="person-filter">
        <option value="">All People</option>
      </select>
      <span class="filter-label">Stakeholder Group</span>
      <select class="filter-select" id="group-filter">
        <option value="">All Groups</option>
      </select>
      <div class="quick-filters">
        <button class="qf-btn active" data-qf="all">All</button>
        <button class="qf-btn" data-qf="exec">Exec Only</button>
        <button class="qf-btn" data-qf="upcoming">Upcoming</button>
      </div>
    </div>
  </div>
  <div class="tab-bar">
    <button class="tab-btn active" data-tab="myview">My View</button>
    <button class="tab-btn" data-tab="overview">Overview</button>
    <button class="tab-btn" data-tab="weekly">Weekly</button>
    <button class="tab-btn" data-tab="monthly">Monthly</button>
    <button class="tab-btn" data-tab="recap">Weekly Recap</button>
  </div>
</div>

<div class="snapshot-note">Data pulled August 4, 2026 (Airtable Meetings/Open Items/People/Groups + findings-doc sign-off sheets). Person and group filters for marketing stakeholders show executive-relevant meetings only. Refresh your browser after each republish.</div>
<div id="main-content"></div>

<div id="modal-overlay">
  <div id="modal-box" role="dialog" aria-modal="true">
    <div class="modal-header">
      <div class="modal-title" id="modal-title"></div>
      <button class="modal-close" id="modal-close" aria-label="Close">&#10005;</button>
    </div>
    <div class="modal-body" id="modal-body"></div>
    <div class="modal-footer" id="modal-footer"></div>
  </div>
</div>


<script>
// â”€â”€â”€ DATA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€

const MEETINGS = [{"id": "recjSsA4voKv1Y12x", "title": "Design Review - Property Listings Page Templates Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Listings Page Design"}], "topic": "Listings Experience", "subtopic": "Listings Page Design", "topics": ["Listings Experience"], "subtopics": ["Listings Page Design"], "startMulti": "", "target": "2026-09-09", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Real Estate Investment - R1", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "DM & D&T - UX Team"], "organizer": [], "purpose": "Early review of Property Listings Page designs before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.\n\nThe Property Landing Page will be a SEO-rich entry point for users to explore CBRE assets and understand inventory.\nThe Property Search Page will be the functional â€˜coreâ€™ of property discovery, allowing users to browse, evaluate, and take action on properties.\nThe Property Detail Page will be a detail page to provide full evaluation criteria and encourage contacting CBRE.", "agenda": "", "feedback": []}, {"id": "rec7FYvGQ0BegVd0O", "title": "Design Review - Global Search & Dynamic Lists Templates R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "Search page design"}], "topic": "Search", "subtopic": "Search page design", "topics": ["Search"], "subtopics": ["Search page design"], "startMulti": "", "target": "2026-10-01", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of Global Search and Dynamic List design. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nGlobal Search is a federated search to maximize content discovery (final approach predicated on tech validation).\nThe Dynamic List page will be a pre-filtered page focused on browsing a full set of curated content (e.g. newsroom) â€” also used for search results that allow easy sorting and filtering to discover content.", "agenda": "", "feedback": []}, {"id": "recRMaRxc50ie2AdX", "title": "Presentation: Future-State Sprinklr content workflow in SitecoreAI & content handling for localizationâ€‹", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-24", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "CBRE to understand the direction of the project Arc implementation for the topics.", "agenda": "Agenda:\n1\\. GUT to present topics for how they are going to be implemented on project Arc \n2\\. Review native SitecoreAI Insights/Research content workflows replacing Sprinklr \n3\\. Review translation connector setup, TMS workflows, and localization framework \n4\\. Q&A", "feedback": []}, {"id": "recA1EsyNVb8DEO3A", "title": "Interlinking Strategy Presentation R2", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "High", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Interlinking"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Interlinking", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Interlinking"], "startMulti": "", "target": "2026-07-15", "actual": "2026-07-17", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Select Marketing Leads"], "attendees": ["DM - Kristen's Directs / Leads", "Globant Strategy Team", "Chartis SEO", "Content - R1", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Talent/People - ALL", "D&T - Tech Leads", "Project Managers - CBRE + Globant", "Research - R1"], "organizer": ["Andrea Sanchez"], "purpose": "Review v2 of the interlinking strategy for CBRE.com. The strategy defines the connective logic across the site, mapping how content areas work together to guide users intuitively through their journeys. It will serve as a guiding framework for all subsequent IA and content strategy phases.", "agenda": "1. Recap of previous sessions and feedback heard\n2. Updates to interlinking strategy", "feedback": [{"label": "CBRE Interlinking Strategy.pptx", "url": "https://cbre.sharepoint.com/:p:/t/ProjectArc-Services/IQAC2tpsznV-T6IJ19xEKSvZARXTsXm33OYp-2w1lcGtKIE?e=xVyeox"}]}, {"id": "recVNj4qTwPNdRODl", "title": "DAM(1/4) - Requirements - AAM", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": true, "tech": true, "audience": ["Select Marketing Leads"], "attendees": [], "organizer": ["Subhabrat Padhi"], "purpose": "", "agenda": "", "feedback": []}, {"id": "rec29uWpH6QWKMBpZ", "title": "Governance Content Framework & Council socialization meetings", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Global vs Local content"}], "topic": "Authoring Experience", "subtopic": "Global vs Local content", "topics": ["Authoring Experience"], "subtopics": ["Global vs Local content"], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "rec9YuriA9761KVde", "title": "DAM(4/4) - Requirements - listings need - Non GL", "status": "No longer needed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": true, "audience": ["Select Marketing Leads"], "attendees": [], "organizer": ["Subhabrat Padhi"], "purpose": "", "agenda": "", "feedback": []}, {"id": "recFkJLLgKtroesGC", "title": "CBRE Internal Interlinking Feedback", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Interlinking"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Interlinking", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Interlinking"], "startMulti": "", "target": "", "actual": "2026-07-06", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": [], "organizer": ["Erin Moulesong"], "purpose": "To provide feedback on Globant's proposed Interlinking strategy", "agenda": "", "feedback": [{"label": "CBRE Interlinking Strategy.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/ProjectArc-Services/Shared%20Documents/Interlinking%20Strategy/CBRE%20Interlinking%20Strategy.pptx?d=w6cdada0275ce4f7ea209d7dc44292bd9&csf=1&web=1&e=PNM6x0"}]}, {"id": "recfwwgtWxCTCE7DX", "title": "Advisor Council Meeting - Investor", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "To align with our customers and business segments, this is the Investor Council to provide input, validation and leadership sponsorship on Project Arc", "agenda": "", "feedback": []}, {"id": "recdk9ztSTITirVWP", "title": "People data analysis (reoccuring)", "status": "Reoccurring", "cadence": "Recurring weekly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": 15, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["David Ting"], "purpose": "To align on people data available globally from HR feeds and other sources", "agenda": "", "feedback": []}, {"id": "recEDUSOrCjPXfKgE", "title": "Design Review - Campaign & Base Page Templates R2 - Talent/Careers", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Careers", "subtopic": "Careers page design"}, {"topic": "Talent/Careers", "subtopic": ""}], "topic": "Careers", "subtopic": "Careers page design", "topics": ["Careers", "Talent/Careers"], "subtopics": ["Careers page design"], "startMulti": "", "target": "2026-09-15", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 2 review of Base and Campaign Page design. Please come prepared to participate. This is the final time to share feedback on the Base and Campaign Page design for Talent/Careers. \n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "", "feedback": []}, {"id": "recP7m3VpjIs4at3b", "title": "Campaign & Base Pages content strategy, and wireframes R2", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Base Page Design"}], "topic": "Homepage & Base Pages", "subtopic": "Base Page Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Base Page Design"], "startMulti": "", "target": "2026-08-13", "actual": "2026-08-13", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2"], "organizer": [], "purpose": "Round 2 review of Base Page and Campaign Page content strategy and wireframes . Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "rec3isZxvZRMz6evL", "title": "Services Structure Review - Marketing Core Leadership", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "", "target": "", "actual": "2026-06-29", "duration": 60, "exec": false, "tech": false, "audience": ["Select Marketing Leads", "Benji"], "attendees": [], "organizer": ["Andrea Sanchez"], "purpose": "Receive feedback on proposed Services mapping and discuss timeline, cadence, and attendees to socialize with business stakeholders for input", "agenda": "4pm ET", "feedback": []}, {"id": "recJl31P82BEaTpwa", "title": "Research & Insights update to Globant", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": ""}], "topic": "Insights & Research", "subtopic": "", "topics": ["Insights & Research"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-14", "duration": 30, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Globant"], "attendees": [], "organizer": ["Lisa Anderson", "Subhabrat Padhi"], "purpose": "Bringing Globant up to speed on the Research and Insights work currently underway at CBRE to better inform decisions around interlinking, page designs, etc.", "agenda": "- Lisa - Update on content gating discussions\n- Padhi - Automating research reporting", "feedback": []}, {"id": "reciwx4IhLkRxHIt4", "title": "Integration Group 3 Workshop - Chartis", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows"}], "topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows", "topics": ["Authenticated Experience & Personalization"], "subtopics": ["Form / information capture workflows"], "startMulti": "", "target": "", "actual": "2026-07-08", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Globant understanding of current integration and pain points", "agenda": "\\- UUID Generator\n\\- Google Analytics & Google Tag Manager (GA/GTM)\n\\- Segment (CDP)\n\\- OneTrust for cookie consent\n\\- OneTrust Preference Center", "feedback": [{"label": "Integration-Group-3---Chartis-included.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Questionnaires/2.9-Integration-Specifications-Gathering/Integration-Group-3-*252D-Chartis-included.docx?d=wfd13f5acb82540ac82eb4c4a272fcad5&csf=1&web=1&e=LtWef6__;JSUlJSUl!!GnpIGg!aOPRks4W-JfkUxK-EfWtf2zrQTYjfIZacrVavWhZnxO_UcWgjeuCEGXvUKYuphDy9wnfygtqI3G1U89aCIzCde4H1g$"}]}, {"id": "reciLFmPane84YUyn", "title": "Security & Monitoring Requirements Gathering", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-01", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Determine all the current non-functional requirements related to platform security, monitoring, observability, and performance expectations.\n\nâ€¢ Authentication and access security controls\nâ€¢ PII protection and compliance requirements\nâ€¢ Monitoring, logging, and alerting expectations\nâ€¢ Performance benchmarks and scalability targets\nâ€¢ Incident management and operational readiness\nâ€¢ Security gates, approvals, and validation processes", "agenda": "", "feedback": [{"label": "2.5-Security-&-Monitoring-Assessment-Questionnaire.docx", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Questionnaires/2.5-Security-%26-Monitoring-Requirements-Gathering/2.5-Security-%26-Monitoring-Assessment-Questionnaire.docx?d=w24481e08e8d0460d975544a1b920f371&csf=1&web=1&e=sXUgdD"}]}, {"id": "recjnPIFqPGXkFhvC", "title": "Arc - Lead Routing", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-08-05", "duration": 45, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Subhabrat Padhi"], "purpose": "To get ahead of Globant's ask on lead routing requirements", "agenda": "- Lead Mapping/RoutingÂ \n    - How do we deal with US vs ROW\n- What should be used to map/route leads\n    - Can we attempt to create a map for routingÂ \n- Different kinds of forms (lead vs subscribe vs contact)", "feedback": []}, {"id": "reciaClFtBZ8Jievw", "title": "Design Review - Property Listings Page Templates R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Listings Page Design"}], "topic": "Listings Experience", "subtopic": "Listings Page Design", "topics": ["Listings Experience"], "subtopics": ["Listings Page Design"], "startMulti": "", "target": "2026-09-16", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Real Estate Investment - R1", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of Property Listings Page designs. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe Property Landing Page will be a SEO-rich entry point for users to explore CBRE assets and understand inventory.\nThe Property Search Page will be the functional â€˜coreâ€™ of property discovery, allowing users to browse, evaluate, and take action on properties.\nThe Property Detail Page will be a detail page to provide full evaluation criteria and encourage contacting CBRE.", "agenda": "", "feedback": []}, {"id": "recEWnKMFwrFPY9SA", "title": "Property Listings content strategy, and wireframes Review R2", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Listings Page Design"}], "topic": "Listings Experience", "subtopic": "Listings Page Design", "topics": ["Listings Experience"], "subtopics": ["Listings Page Design"], "startMulti": "", "target": "2026-08-25", "actual": "2026-08-26", "duration": 90, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Real Estate Investment - R1", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "Real Estate Investment - R2"], "organizer": ["Andrea Sanchez"], "purpose": "Round 2 review of Property Listings content strategy and wireframes . Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nThe Property Landing Page will be a SEO-rich entry point for users to explore CBRE assets and understand inventory.\nThe Property Search Page will be the functional â€˜coreâ€™ of property discovery, allowing users to browse, evaluate, and take action on properties.\nThe Property Detail Page will be a detail page to provide full evaluation criteria and encourage contacting CBRE.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "reccP6hB9rBJypWEU", "title": "Architecture Design & Implementation Roadmap - I - Search Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "Site search"}], "topic": "Search", "subtopic": "Site search", "topics": ["Search"], "subtopics": ["Site search"], "startMulti": "", "target": "2026-08-27", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "Chartis SEO"], "organizer": [], "purpose": "Review defined search technical architecture and implementation\napproach", "agenda": "", "feedback": []}, {"id": "reces2XqPbW3J8k41", "title": "Workshop: MarketIQ Demo", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "recFdeTykDHd8HwKC", "title": "Implementation â€” Sprint Demo / Review - #7", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-12-10", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "recF5J0V6ABltJ0Sz", "title": "Design Kick-off for Content and Creative Team", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Design System & Brand application", "subtopic": ""}], "topic": "Design System & Brand application", "subtopic": "", "topics": ["Design System & Brand application"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-14", "duration": 45, "exec": true, "tech": false, "audience": ["CBRE DM", "Select Marketing Leads", "D&T", "Globant"], "attendees": ["DM - Kristen's Directs / Leads", "Creative", "Brand", "DM & D&T - UX Team", "Globant UX team", "Project Managers - CBRE + Globant"], "organizer": ["Matt Siegel"], "purpose": "Align on UI/Creative Direction for Project Arc. Agree on what design system we'll use, how it will connect to CBRE's broader ecosystem, and what other creative considerations Gut should account for", "agenda": "\\- Intros: CBRE Creative and Content teams\n\\- Share latest Visual Identity work (TJ)\n\\- Review proposed design system approach and assumptions", "feedback": []}, {"id": "recSO5ckRhdUWcjDO", "title": "Design Review - Homepage & Navigation Templates Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Homepage Design"}], "topic": "Homepage & Base Pages", "subtopic": "Homepage Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Homepage Design"], "startMulti": "", "target": "2026-09-25", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Early review of design before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.  There will NOT be a formal feedback loop after this session.\n\nThe Homepage template that serves as the front-door of the CBRE digital experience.\nThe About Us is a standard company page focused on giving a broad overview of CBRE with opportunity for additional regional brand highlights.", "agenda": "", "feedback": []}, {"id": "recnYjsb7cmtPm04U", "title": "Architecture Design & Implementation Roadmap - I - Sitecore AI architecture Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-11", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant"], "organizer": [], "purpose": "Review defined Architecture Design package, including CMS architecture, integration approach, content model, environment setup, and an implementation roadmap to guide subsequent phases. This would also include a rollback plan template.", "agenda": "", "feedback": []}, {"id": "rectKTKuhrHQ1OnE7", "title": "Training & Enablement - Content Authors & Editors Training", "status": "Reoccurring", "cadence": "Recurring monthly", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Content creation & migration", "subtopic": "Training"}], "topic": "Content creation & migration", "subtopic": "Training", "topics": ["Content creation & migration"], "subtopics": ["Training"], "startMulti": "2026-12-01", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "rechpqQDaguspJZ00", "title": "Information Architecture & Navigation Wireframes - R2 Review with Research", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Information Architecture"], "startMulti": "", "target": "2026-08-24", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1"], "organizer": ["Lisa Anderson"], "purpose": "Internal socialization call with Research team on proposed Navigation and Sitemap", "agenda": "", "feedback": []}, {"id": "recemwjrHSxJ7d9bE", "title": "Visual Design Concept follow-up", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Design System & Brand application", "subtopic": ""}], "topic": "Design System & Brand application", "subtopic": "", "topics": ["Design System & Brand application"], "subtopics": [], "startMulti": "", "target": "2026-07-29", "actual": "2026-08-05", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Creative", "Brand", "Project Managers - Marketing + Globant"], "organizer": ["Andrea Sanchez"], "purpose": "Discuss updates to the visual design direction based on outcomes from the 7/27 meeting with Benji.", "agenda": "- Review outcomes from \"three words\" digital brand strategy discussion from last week\n- Review design concepts for visual designs (third round) base on feedback received during last week\n- Align on next steps in preparation for follow up call with Benji (8/12)", "feedback": []}, {"id": "rectkEXS2elaobMrD", "title": "Design Review - Services Pages Templates R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Page Design"}], "topic": "Services", "subtopic": "Services Page Design", "topics": ["Services"], "subtopics": ["Services Page Design"], "startMulti": "", "target": "2026-08-27", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of Services Page designs. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nServices Hub is the highest-level landing page that collects category content focused on a main problem customers are trying to solve.\nThe Landing Page is a base landing page providing an overview of a capability/service (or set of capabilities/services) encouraging deeper exploration.\nThe Topic Page is an alternate type of landing page with focus on a single topic (e.g. Property Types, Industries), with more content flexibility than a standard Landing.", "agenda": "", "feedback": []}, {"id": "recZSzlpNIcdvzOIh", "title": "Property Type and Industry Type Next Steps (with Nick)", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": ""}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-17", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Select Marketing Leads"], "attendees": ["DM - Kristen's Directs / Leads", "D&T - Tech Leads", "Project Managers - Marketing", "Chartis SEO"], "organizer": ["Erin Moulesong"], "purpose": "To align with Nick on next steps for Property Type and Industry to align on a recommended â€œGlobal Commonâ€ and â€œLocalâ€ set.", "agenda": "1. Trisha â€“ review CDO work done for US Property Type and Industry\n2. Ganesh â€“ review Chartis feedback\n3. Padhi / Alex â€“ review Analytics (68 websites) and Global Listings (26 sites) information\n4. All â€“ discussion on next steps", "feedback": [{"label": "Data Tower defined Property & Industry types.xlsx", "url": "https://cbre.sharepoint.com/:x:/t/projectarc/IQDNmgEFXP0aTK-48o7cGBoXARmVmdaPOn-8hCKYg0EAWd8?e=idaMD2"}]}, {"id": "recjg7zO8CwFrzihE", "title": "Integration Group 2 Workshop - Azure/OKTA, Sitecore Publishing, Cloudflare", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows"}], "topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows", "topics": ["Authenticated Experience & Personalization"], "subtopics": ["Form / information capture workflows"], "startMulti": "", "target": "", "actual": "2026-07-07", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Globant understanding of current integration and pain points", "agenda": "\\- Azure Active Directory / Okta for SSO\n\\- Sitecore Publishing Service\n\\- Cloudflare Workers for reverse proxy, image optimization, and routing", "feedback": []}, {"id": "recJ4dREqmnLClIRN", "title": "Architecture Design & Implementation Roadmap - I -E-DAM Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Asset Management (DAM)"}], "topic": "Authoring Experience", "subtopic": "Asset Management (DAM)", "topics": ["Authoring Experience"], "subtopics": ["Asset Management (DAM)"], "startMulti": "", "target": "2026-08-13", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Review the defined DAM strategy, phased migration approach, and\nintegration model", "agenda": "", "feedback": []}, {"id": "rece3O48PQKWeCxVw", "title": "Architecture Design & Implementation Roadmap - I - Security & Monitoring Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-09-01", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant"], "organizer": [], "purpose": "Review defined security and monitoring technical architecture", "agenda": "", "feedback": []}, {"id": "recESAG9YMkzt9UkI", "title": "Design Review - Insights & Research Page Templates R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": "Insights & Research Page Design"}], "topic": "Insights & Research", "subtopic": "Insights & Research Page Design", "topics": ["Insights & Research"], "subtopics": ["Insights & Research Page Design"], "startMulti": "", "target": "2026-09-10", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Content - R1", "Research - R1", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Round 1 review of Insights & Research Page designs. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nInsights Hub will be a new type of Hub page focused on encouraging discovery across all CBRE Insight materials.\nInsights Detail is a proposed new â€œInsightâ€ content templates to accommodate short and long-form content â€” focused on deep research and data visualization to build trust and authority in the CRE space.", "agenda": "", "feedback": []}, {"id": "recTiTDEOvANDZWsY", "title": "Services Structure R1 Presentation", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "", "target": "", "actual": "2026-06-03", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "Workshop participants"], "attendees": [], "organizer": [], "purpose": "DM team to review first draft of Proposed Services IA and implementation recommendations + live feedback", "agenda": "", "feedback": []}, {"id": "recJwn9IGzblQ2GQa", "title": "SEO/Analytics Assessment & Requirements Gathering", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "SEO & Analytics"}], "topic": "Search", "subtopic": "SEO & Analytics", "topics": ["Search"], "subtopics": ["SEO & Analytics"], "startMulti": "", "target": "2026-07-27", "actual": "2026-08-03", "duration": 120, "exec": true, "tech": true, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Chartis SEO", "Project Managers - Marketing + Globant", "Chartis Analytics"], "organizer": ["Jesper Bunch"], "purpose": "Understand the current SEO and analytics ecosystem and gather requirements related to:\n\nâ€¢ SEO strategy and technical SEO implementation (Robots.txt, sitemap.xml, SEO metadata, canonical tags, structured data )\nâ€¢ GEO strategy and technical GEO implementation\nâ€¢ SEO tools\nâ€¢ Analytics tools and tracking setup\nâ€¢ Reporting and KPI definitions\nâ€¢ Event tracking, tagging, and reporting requirements\nâ€¢ Data Layerâ€“based Tracking Model vs Direct Event-driven Tracking Model\nâ€¢ GTM & script policy handling (GDPR, etc.)", "agenda": "", "feedback": [{"label": "CBRE Tech Discovery 2.6 SEO and Analytics Assessment Questionnaire.doc", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Questionnaires/2.6-SEO-Analytics-Assessment-%26-Requirements-Gathering/CBRE%20Tech%20Discovery%202.6%20SEO%20and%20Analytics%20Assessment%20Questionnaire.docx?d=w3642105d3ec1405095266a29fae98d47&csf=1&web=1&e=bSHgM2"}]}, {"id": "rec1ClJvcgczWDr76", "title": "US/Italy Launch Plan - R1 Review with Internal Stakeholders", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Launch Planning (US & International)", "subtopic": "US"}], "topic": "Launch Planning (US & International)", "subtopic": "US", "topics": ["Launch Planning (US & International)"], "subtopics": ["US"], "startMulti": "", "target": "2026-08-10", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Project Managers - CBRE + Globant", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "D&T - Tech Leads"], "organizer": [], "purpose": "Core Leadership R1 review of the proposed US and Italy Launch plan", "agenda": "", "feedback": []}, {"id": "recGjDjZiwpP85Nyy", "title": "Design Review - About Us Templates Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "About Us & PR", "subtopic": "About Us page design"}], "topic": "About Us & PR", "subtopic": "About Us page design", "topics": ["About Us & PR"], "subtopics": ["About Us page design"], "startMulti": "", "target": "2026-09-25", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Early review of the About Us design before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.  There will NOT be a formal feedback loop after this session.\n\nThe About Us is a standard company page focused on giving a broad overview of CBRE with opportunity for additional regional brand highlights.", "agenda": "", "feedback": []}, {"id": "recie7dktiYIObzEy", "title": "Governance Next Steps Part 2", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-03", "actual": "2026-08-03", "duration": 30, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "To review and align on next steps for governance per Carlosâ€™ email attached", "agenda": "", "feedback": []}, {"id": "recJ9QksLD4Fv6IRl", "title": "Design Review - Global Search & Dynamic Lists Templates Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "Search page design"}], "topic": "Search", "subtopic": "Search page design", "topics": ["Search"], "subtopics": ["Search page design"], "startMulti": "", "target": "2026-09-18", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Early review of Global Search and Dynamic Lists design before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.  There will NOT be a formal feedback loop after this session\n\nGlobal Search is a federated search to maximize content discovery (final approach predicated on tech validation).\nThe Dynamic List page will be a pre-filtered page focused on browsing a full set of curated content (e.g. newsroom) â€” also used for search results that allow easy sorting and filtering to discover content.", "agenda": "", "feedback": []}, {"id": "recDW9ykQNR2uUUAX", "title": "UX / Design Batch alignment", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-06", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Globant"], "attendees": [], "organizer": ["Matt Siegel"], "purpose": "To align on Page Templates needed and batch priority for content types", "agenda": "", "feedback": [{"label": "Project Arc - UX Kickoff.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/projectarc/Shared%20Documents/General/UX%20and%20Design/Project%20Arc%20-%20UX%20Kickoff.pptx?d=w7d9c3be50cd24d0b9691aac86d89e299&csf=1&web=1&e=slNnX4"}]}, {"id": "recHnbMWi7RMO84zN", "title": "Services Structure R2 Presentation", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "", "target": "", "actual": "2026-06-16", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM"], "attendees": [], "organizer": [], "purpose": "DM team to review second draft of Proposed Services IA and implementation recommendations for presentation to Benji and leaders", "agenda": "", "feedback": []}, {"id": "reces5eFH8TOw4SRM", "title": "Launch Waves Rollout Prioritization - R0.5 Review", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-10", "actual": "2026-08-14", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Project Managers - CBRE + Globant", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "D&T - Tech Leads"], "organizer": ["Andrea Sanchez"], "purpose": "Initial DM & D&T review of GUT's proposed logic for wave prioritization and groupings", "agenda": "", "feedback": []}, {"id": "recUQSia3812ZmOsg", "title": "Design Review - Global Search & Dynamic Lists Templates R2 with Research", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "Search page design"}], "topic": "Search", "subtopic": "Search page design", "topics": ["Search"], "subtopics": ["Search page design"], "startMulti": "", "target": "2026-10-07", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 2 review of Global Search and Dynamic List design. Please come prepared to participate. This is the final time to share feedback on these designs. \n\nGlobal Search is a federated search to maximize content discovery (final approach predicated on tech validation).\nThe Dynamic List page will be a pre-filtered page focused on browsing a full set of curated content (e.g. newsroom) â€” also used for search results that allow easy sorting and filtering to discover content.", "agenda": "", "feedback": []}, {"id": "reck60iXHbYp95eie", "title": "Role Socialization & Refinement", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Global vs Local content"}], "topic": "Authoring Experience", "subtopic": "Global vs Local content", "topics": ["Authoring Experience"], "subtopics": ["Global vs Local content"], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "Identify the appropriate business and technical stakeholders to fulfill the defined governance roles, validate organizational ownership across global, regional, and market teams, identify staffing or capability gaps, and agree on a plan to address any unmet governance responsibilities before implementation.", "agenda": "- Workshop Objectives\n- Governance Roles Overview\n- Role Identification\n- Global, Regional & Market Representation\n- Staffing Gap Assessment\n- Governance Council Review\n- Next Steps", "feedback": []}, {"id": "rechNEjxTipMDPgnN", "title": "UX Components + Analytics", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Design System & Brand application", "subtopic": ""}], "topic": "Design System & Brand application", "subtopic": "", "topics": ["Design System & Brand application"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-16", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "Globant", "D&T"], "attendees": ["DM & D&T - UX Team", "Chartis Analytics", "Globant UX team", "Project Managers - CBRE + Globant"], "organizer": ["Craig Stover"], "purpose": "Align on design system approach and frontend engineering strategy for SitecoreAI.", "agenda": "\\- Review existing infrastructure â€” Emerald Design System components and token library.Â \n \\- Agree on expectations for how coded components will be created and managed â€” What they will reference? What will be fed back into our design system? What is Sitecore-specific?Â \n \\- Agree on analytics approach â€” how will we account for tracking events in our system at a component level?", "feedback": [{"label": "Project Arc Design System - Proposed Approach", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQCjaCWL6iMBSp47Fuv5HLNGAS3oBKakj0a6-a8mCqXUCAg?e=tdUbXy&isSPOFile=1&xsdata=MDV8MDJ8fGRiMTVlOWE5YzJmMTQ3NThhZWUxMDhkZWRkZGVjYTZlfDAxNTllOWQwMDlhMDRlZGY5NmJhYTNkZWVhMzYzYzI4fDB8MHw2MzkxOTIxNDYwODE5MTg2ODl8VW5rbm93bnxWR1ZoYlhOVFpXTjFjbWwwZVZObGNuWnBZMlY4ZXlKRFFTSTZJbFJsWVcxelgwRlVVRk5sY25acFkyVmZVMUJQVEU5R0lpd2lWaUk2SWpBdU1DNHdNREF3SWl3aVVDSTZJbGRwYmpNeUlpd2lRVTRpT2lKUGRHaGxjaUlzSWxkVUlqb3hNWDA9fDF8TDJOb1lYUnpMekU1T2pZeFlqSmpOVEV5TFdFNU1tUXROREl4TVMxaE9EYzRMVGRtWldWaFlqa3lZekZqWTE4NFpUTmlaV1l3TVMweU1XWTBMVFF4T1RrdFlUTTNNUzAyTUdFM09UY3haR1prTkdaQWRXNXhMbWRpYkM1emNHRmpaWE12YldWemMyRm5aWE12TVRjNE16WXhOemd3TmpFd01RPT18NTc4ZjlkZDMxNzNhNGM3YzU4NjQwOGRlZGRkZWNhNmV8ZDM1MDE3YzcyYjJjNGEwZWEyNDM5YmRlNDMwNzc1ODA%3D&sdata=eU5tVkxEZG9IanZ4TUU4dUVYK3VQaklHdzBibWNwTXRGTFdHQmoySjlWdz0%3D&ovuser=0159e9d0-09a0-4edf-96ba-a3deea363c28%2CErin.Moulesong%40cbre.com"}, {"label": "Emerald Design System - Brand UI react component storybook", "url": "https://docs.emerald.cbre.com/?path=/docs/brand-react_changelog-1-core-react--docs"}]}, {"id": "reclB8G2EonbDoyzH", "title": "Services Structure Review - Nick J to review with business leaders", "status": "In Progress", "cadence": "Multiple", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "2026-07-06", "target": "2026-08-05", "actual": "", "duration": 30, "exec": true, "tech": false, "audience": ["Business stakeholders"], "attendees": ["DM - Kristen's Directs / Leads", "Project Managers - Marketing"], "organizer": ["Nick Jablonski"], "purpose": "Review recommended new mapping for Services link on cbre.com to improve client engagement", "agenda": "", "feedback": [{"label": "Services Strategy Exec V2.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/ProjectArc-Services/Shared%20Documents/Services%20Proposal/Services%20Strategy%20Exec%20V2.pptx?d=w77efdfc12f874914bd78d4446e7841d2&csf=1&web=1&e=1YvqBZ"}, {"label": "CBRE Services grid.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/ProjectArc-Services/Shared%20Documents/Services%20Proposal/CBRE%20Services%20grid.xlsx?d=wa18a07bcc1fb4d1f8859662c92ab1b87&csf=1&web=1&e=v7WoLn&isSPOFile=1&xsdata=MDV8MDJ8fDA5NjZkY2Q5MTQ2YjQ3MzY4MzExMDhkZWQ3NzYxNzhkfDAxNTllOWQwMDlhMDRlZGY5NmJhYTNkZWVhMzYzYzI4fDB8MHw2MzkxODUwOTkzMzQ0Njc3NjV8VW5rbm93bnxWR1ZoYlhOVFpXTjFjbWwwZVZObGNuWnBZMlY4ZXlKRFFTSTZJbFJsWVcxelgwRlVVRk5sY25acFkyVmZVMUJQVEU5R0lpd2lWaUk2SWpBdU1DNHdNREF3SWl3aVVDSTZJbGRwYmpNeUlpd2lRVTRpT2lKUGRHaGxjaUlzSWxkVUlqb3hNWDA9fDF8TDJOb1lYUnpMekU1T20xbFpYUnBibWRmVFVkSk1rNXFaekZPVkdOMFdXMWFiRTE1TURCTlYwNXJURlJvYlUxWFVYUmFSMUp0VDFkVmVrMUVhelJaVkZrMFFIUm9jbVZoWkM1Mk1pOXRaWE56WVdkbGN5OHhOemd5T1RFek1UTXhPVFkxfGExOWUzZjg1NWFlZTQ4MWYzYWFjMDhkZWQ3NzYxNzhkfGYyYjYzODQ1MWVhZjRjMzhhOGJiYzgyNWY4MWYzMWQ1&sdata=bFpsNnVHOWtFQWd1OVhUYnlLai9ReGRpSDduMk4ybmU0UDEvcGRQcWRZUT0%3D&ovuser=0159e9d0-09a0-4edf-96ba-a3deea363c28%2CErin.Moulesong%40cbre.com"}, {"label": "Services Feedback.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/ProjectArc-Services/_layouts/15/Doc.aspx?sourcedoc=%7B1E0076C9-B96A-4037-89C1-B7BCD3749706%7D&file=Services%20Feedback%20V2.xlsx&action=default&mobileredirect=true&isSPOFile=1&xsdata=MDV8MDJ8fGVmYWMxY2U4ZWVmOTQzOTRjNTQ2MDhkZWQ2MDQ5ZjgwfDAxNTllOWQwMDlhMDRlZGY5NmJhYTNkZWVhMzYzYzI4fDB8MHw2MzkxODM1MTI0Nzc0MTg4MjJ8VW5rbm93bnxWR1ZoYlhOVFpXTjFjbWwwZVZObGNuWnBZMlY4ZXlKRFFTSTZJbFJsWVcxelgwRlVVRk5sY25acFkyVmZVMUJQVEU5R0lpd2lWaUk2SWpBdU1DNHdNREF3SWl3aVVDSTZJbGRwYmpNeUlpd2lRVTRpT2lKUGRHaGxjaUlzSWxkVUlqb3hNWDA9fDF8TDJOb1lYUnpMekU1T20xbFpYUnBibWRmVFVkSk1rNXFaekZPVkdOMFdXMWFiRTE1TURCTlYwNXJURlJvYlUxWFVYUmFSMUp0VDFkVmVrMUVhelJaVkZrMFFIUm9jbVZoWkM1Mk1pOXRaWE56WVdkbGN5OHhOemd5TnpVME5EUTFOemcxfGE0MjVhZWNhZDdjMzRlOTFjNTQ2MDhkZWQ2MDQ5ZjgwfDc1NmY2YWU3OWQyMDQ1ZTRhNmJhODk4MWIyMGU2ZmU0&sdata=cWhBQzFVdzA3Zi9yYnBhakF3YjRRMVcveXBLRk15ZDNBb2EzRzluclM1QT0%3D&ovuser=0159e9d0-09a0-4edf-96ba-a3deea363c28%2CErin.Moulesong%40cbre.com"}]}, {"id": "recpt8TAjJWpcttIM", "title": "Homepage content strategy and wireframe proposal R1", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Homepage Design"}], "topic": "Homepage & Base Pages", "subtopic": "Homepage Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Homepage Design"], "startMulti": "", "target": "2026-09-02", "actual": "2026-09-03", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1"], "organizer": ["Andrea Sanchez"], "purpose": "Round 1 review of Homepage content strategy and wireframe.  Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe Homepage template that serves as the front-door of the CBRE digital experience.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recfj8Wykc1aFvCFH", "title": "Person Page content strategy, and wireframes Review R2", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Person Page", "subtopic": "Person Page Design"}], "topic": "Person Page", "subtopic": "Person Page Design", "topics": ["Person Page"], "subtopics": ["Person Page Design"], "startMulti": "", "target": "2026-08-05", "actual": "2026-08-06", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2"], "organizer": ["Andrea Sanchez"], "purpose": "Round 2 review of Person Page content strategy and wireframes . Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nThe Person Page is focused on personal and professional info to build connection with brokers and CBRE experts.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "reccSRkEdy2H3wsXC", "title": "Implementation â€” Sprint Demo / Review - #6", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-11-24", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "rec1kQspwmLe1vuqX", "title": "Governance Next Steps", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-07-31", "actual": "", "duration": 30, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "To review and align on next steps for governance per Carlosâ€™ email attached", "agenda": "", "feedback": []}, {"id": "recUhkKVxF1keLFc9", "title": "Services Taxonomy Review", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "", "target": "", "actual": "2026-05-28", "duration": 30, "exec": false, "tech": false, "audience": ["Select Marketing Leads"], "attendees": [], "organizer": [], "purpose": "Sneak peek into the Services Taxonomy Proposal ahead of first draft presentation", "agenda": "", "feedback": [{"label": "IQArKuSkbLlPQZeqxZD0KXGEAW9UFO1iassK2tOLkKVJe_Q?e=Gi1IDm", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQArKuSkbLlPQZeqxZD0KXGEAW9UFO1iassK2tOLkKVJe_Q?e=Gi1IDm"}]}, {"id": "recmyzu7nTuwP7MvP", "title": "Governance Council Proposal Review R1", "status": "Ready to Schedule", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Global vs Local content"}], "topic": "Authoring Experience", "subtopic": "Global vs Local content", "topics": ["Authoring Experience"], "subtopics": ["Global vs Local content"], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Carlos Vargas"], "purpose": "Review the Governance Content Framework and Governance Council with executive leadership to obtain approval of the governance model and align on the implementation and adoption approach.", "agenda": "Introduction & Objectives\nGovernance Content Framework Overview\nGovernance Council & Operating Model\nRoles & Responsibilities\nGovernance Roadmap & Next Steps\nFeedback & Discussion", "feedback": []}, {"id": "rechRlXuCrEY7YE0A", "title": "Design Review - Campaign & Base Page Templates R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Base Page Design"}], "topic": "Homepage & Base Pages", "subtopic": "Base Page Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Base Page Design"], "startMulti": "", "target": "2026-09-02", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of the Base and Campaign Page design.  Please come prepared to participate. Your feedback will be incorporated into the R2 review.\n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "", "feedback": []}, {"id": "recWKX3dtdLv6sgYO", "title": "Design Review - Property Listings Page Templates R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Listings Page Design"}], "topic": "Listings Experience", "subtopic": "Listings Page Design", "topics": ["Listings Experience"], "subtopics": ["Listings Page Design"], "startMulti": "", "target": "2026-09-28", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Real Estate Investment - R1", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "Real Estate Investment - R2", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 2 review of Property Listings Page designs. Please come prepared to participate. This is the final time to share feedback on these designs. \n\nThe Property Landing Page will be a SEO-rich entry point for users to explore CBRE assets and understand inventory.\nThe Property Search Page will be the functional â€˜coreâ€™ of property discovery, allowing users to browse, evaluate, and take action on properties.\nThe Property Detail Page will be a detail page to provide full evaluation criteria and encourage contacting CBRE.", "agenda": "", "feedback": []}, {"id": "recelOmmZzp3koxgS", "title": "Design Review - Global Search & Dynamic Lists Templates R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "Search page design"}], "topic": "Search", "subtopic": "Search page design", "topics": ["Search"], "subtopics": ["Search page design"], "startMulti": "", "target": "2026-10-07", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 2 review of Global Search and Dynamic List design. Please come prepared to participate. This is the final time to share feedback on these designs. \n\nGlobal Search is a federated search to maximize content discovery (final approach predicated on tech validation).\nThe Dynamic List page will be a pre-filtered page focused on browsing a full set of curated content (e.g. newsroom) â€” also used for search results that allow easy sorting and filtering to discover content.", "agenda": "", "feedback": []}, {"id": "recJaELsibcWCMY31", "title": "Global Search & Dynamic Lists content strategy and wireframes proposals R1", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "Search page design"}], "topic": "Search", "subtopic": "Search page design", "topics": ["Search"], "subtopics": ["Search page design"], "startMulti": "", "target": "2026-08-25", "actual": "2026-08-25", "duration": 90, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Round 1 review of Global Search and Dynamic Lists content strategy and wireframes.  Please come prepared to participate. Your feedback will be incorporated into the R2 review.\n\nGlobal Search is a federated search to maximize content discovery (final approach predicated on tech validation).\nThe Dynamic List page will be a pre-filtered page focused on browsing a full set of curated content (e.g. newsroom) â€” also used for search results that allow easy sorting and filtering to discover content.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "rec7RJAXGnYZ9yrbT", "title": "Presentation 1: Future-State Sitecore Solution Architecture", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-18", "actual": "", "duration": 90, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Present the finalized future-state Sitecore solution architecture, including the application architecture, platform capabilities, integration approach, and key design decisions, and obtain stakeholder alignment prior to implementation.", "agenda": "Agenda:\nâ€¢ Present the finalized Sitecore solution architecture and design principles\nâ€¢ Review application architecture, integrations, and platform capabilities\nâ€¢ Validate scalability, security, and extensibility considerations\nâ€¢ Address final questions, obtain stakeholder alignment, and confirm next steps", "feedback": []}, {"id": "recmQWKnCzJvr3iBN", "title": "Domain Strategy Recommendation R2", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": ""}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-14", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis", "Globant"], "attendees": ["CBRE Digital Marketing", "Chartis SEO", "Globant Strategy Team"], "organizer": ["Andrea Sanchez"], "purpose": "Globant to present their domain strategy recommendations by each specific domain.Â This will include the analysis of where the world is heading and what our competitors/leaders in the space are doing", "agenda": "", "feedback": []}, {"id": "recMJZyfLx1uWS8MS", "title": "Workshop: E-DAM Analysis/Definition", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Asset Management (DAM)"}], "topic": "Authoring Experience", "subtopic": "Asset Management (DAM)", "topics": ["Authoring Experience"], "subtopics": ["Asset Management (DAM)"], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "recBxuWPQLAqNYsbE", "title": "Global Search & Dynamic Lists content strategy and wireframes proposals R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "Search page design"}], "topic": "Search", "subtopic": "Search page design", "topics": ["Search"], "subtopics": ["Search page design"], "startMulti": "", "target": "2026-09-09", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2"], "organizer": [], "purpose": "Round 2 review of Global Search and Dynamic Lists content strategy and wireframes. Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nGlobal Search is a federated search to maximize content discovery (final approach predicated on tech validation).\nThe Dynamic List page will be a pre-filtered page focused on browsing a full set of curated content (e.g. newsroom) â€” also used for search results that allow easy sorting and filtering to discover content.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recS5p38vaWklBLdO", "title": "SSO Assessment & Requirements Gathering", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authenticated Experience & Personalization", "subtopic": "Authenticated Experience"}], "topic": "Authenticated Experience & Personalization", "subtopic": "Authenticated Experience", "topics": ["Authenticated Experience & Personalization"], "subtopics": ["Authenticated Experience"], "startMulti": "", "target": "", "actual": "2026-06-29", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Gather information from CBRE on the current implementation and requirements for authentication, authorization, and access management within the SitecoreAI ecosystem.\n\nâ€¢ Identity provider integrations (SAML, OAuth2/OIDC)\nâ€¢ User roles and permission models\nâ€¢ SSO architecture and governance\nâ€¢ User provisioning and migration strategy\nâ€¢ Access control and compliance requirements\nâ€¢ CMS authoring and administration security needs", "agenda": "", "feedback": [{"label": "2.4 SSO Assessment Questionnaire - Overview", "url": "https://urldefense.com/v3/__https:/dev.azure.com/cbre/DotCom/_wiki/wikis/DotCom.wiki/27827/2.4-SSO-Assessment-Questionnaire__;!!GnpIGg!buXYFgtCe-O1DT1CP6s5GWwN_RGGG9WmFVV5hSNAstpAxQtmcr4IaX3UbUzI8sLmWo0zutho46LtZ_DJZJiVO36sOw$"}]}, {"id": "recMXUVnf9NnsuYQC", "title": "UX Meet & Greet", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": 30, "exec": false, "tech": false, "audience": ["D&T", "CBRE DM"], "attendees": [], "organizer": ["Andrea Sanchez"], "purpose": "", "agenda": "- Project Alignment & Expectation Setting (Globant GUT & CBRE);\n- Pre-Kickoff Alignment: Roles, Expectations & Delivery Model;\n- Program Initiation: Governance & Collaboration Model", "feedback": []}, {"id": "recC2pcbZwlfxC3xI", "title": "Design Review - Person Page Template R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Person Page", "subtopic": "Person Page Design"}], "topic": "Person Page", "subtopic": "Person Page Design", "topics": ["Person Page"], "subtopics": ["Person Page Design"], "startMulti": "", "target": "2026-09-04", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Round 2 review of Person Page design. Please come prepared to participate. This is the final time to share feedback on these designs. \n\nThe Person Page is focused on personal and professional info to build connection with brokers and CBRE experts.", "agenda": "", "feedback": []}, {"id": "rec6ORtqGY0am9bue", "title": "Information Architecture & Navigation Wireframes Presentation R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Information Architecture"], "startMulti": "", "target": "2026-08-17", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2"], "organizer": ["Andrea Sanchez"], "purpose": "Round 2 review of Information Architecture and Sitemap strategy and wireframes.  Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.", "agenda": "", "feedback": []}, {"id": "reclOJHjwrk35Vlew", "title": "Campaign & Base Pages content strategy and wireframes R2 - Talent/Careers", "status": "Ready to Schedule", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Careers", "subtopic": "Careers page design"}, {"topic": "Talent/Careers", "subtopic": ""}], "topic": "Careers", "subtopic": "Careers page design", "topics": ["Careers", "Talent/Careers"], "subtopics": ["Careers page design"], "startMulti": "", "target": "2026-08-13", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2"], "organizer": [], "purpose": "Round 2 review of Base Page and Campaign Page content strategy and wireframes specifically for Talent/Careers.  Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recMw74sRnrOI39FL", "title": "Update on Gating", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-08-04", "duration": 45, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Craig Stover"], "purpose": "", "agenda": "This framework should be a useful input into a few workstreams:\n- Form strategy\n- Authenticated Experience Strategy\n- Content templates", "feedback": []}, {"id": "recZeDf0DoAR3DSj1", "title": "DM & D&T Internal Weekly 8.3.26", "status": "Completed", "cadence": "Recurring weekly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-08-03", "duration": 60, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Erin Moulesong"], "purpose": "Will replace Padhiâ€™s DM D&T call to bring ahead of Globant Status/Feedback call on Tuesdays\nTopics will vary by week and will work with Andrew and Padhi to send an agenda on Friday, but consist of:\n1.\tConsolidated Feedback reviews of the latest Globant deliverables\n2.\tReview of Upcoming meetings to ensure teams prepared\n3.\tReview of Open Action Items in Airtable\n4.\tIdentification of topics for Globant Status or Benjiâ€™s Leadership team", "agenda": "", "feedback": []}, {"id": "rec8ycRJH1MDezIxq", "title": "Architecture Design & Implementation Roadmap - I - Environment strategy & deployment Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Information Architecture"], "startMulti": "", "target": "2026-08-11", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant"], "organizer": [], "purpose": "Review environment parity expectations, access levels, deployment flows, and promotion paths between environments.  Review the strategy that defines how CMS environments, frontend applications, and integration services are coordinated across the delivery pipeline to support consistent releases and reliable testing. In addition, Globant will provide best-practice recommendations for Vercel environment setup, deployment configuration, and release management aligned with scalability, security, and operational efficiency standards", "agenda": "", "feedback": []}, {"id": "reccFZWcM9fvyRNVK", "title": "Design Review - About Us Templates R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "About Us & PR", "subtopic": "About Us page design"}], "topic": "About Us & PR", "subtopic": "About Us page design", "topics": ["About Us & PR"], "subtopics": ["About Us page design"], "startMulti": "", "target": "2026-10-15", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 2 review of the About Us design. Please come prepared to participate. This is the final time to share feedback on the About Us design\n\nThe About Us is a standard company page focused on giving a broad overview of CBRE with opportunity for additional regional brand highlights.", "agenda": "", "feedback": []}, {"id": "recKINLYmVDJkVdUD", "title": "Design Review - Insights & Research Page Templates R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": "Insights & Research Page Design"}], "topic": "Insights & Research", "subtopic": "Insights & Research Page Design", "topics": ["Insights & Research"], "subtopics": ["Insights & Research Page Design"], "startMulti": "", "target": "2026-09-22", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Content - R1", "Research - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "Content - R2", "Research - R2", "DM & D&T - UX Team", "Project Managers - CBRE", "Creative"], "organizer": [], "purpose": "Round 2 review of Insights & Research Page designs. Please come prepared to participate. This is the final time to share feedback on these designs\n\nInsights Hub will be a new type of Hub page focused on encouraging discovery across all CBRE Insight materials.\nInsights Detail is a proposed new â€œInsightâ€ content templates to accommodate short and long-form content â€” focused on deep research and data visualization to build trust and authority in the CRE space.", "agenda": "", "feedback": []}, {"id": "recbcU6JtJniEzdOy", "title": "Services content strategy, and wireframes Review R2", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Page Design"}], "topic": "Services", "subtopic": "Services Page Design", "topics": ["Services"], "subtopics": ["Services Page Design"], "startMulti": "", "target": "2026-08-05", "actual": "2026-08-12", "duration": 90, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Advisory - UK&I, CE - R2", "Advisory & Client office - US & CAN - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Turner & Townsend - R1", "Turner & Townsend - R2", "DM & D&T - UX Team"], "organizer": ["Andrea Sanchez"], "purpose": "Round 2 review of Services pages content strategy and wireframe for Project Arc.  Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nServices Hub is the highest-level landing page that collects category content focused on a main problem customers are trying to solve.\nThe Landing Page is a base landing page providing an overview of a capability/service (or set of capabilities/services) encouraging deeper exploration.\nThe Topic Page is an alternate type of landing page with focus on a single topic (e.g. Property Types, Industries), with more content flexibility than a standard Landing.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recTdr5R9WtVYOT6H", "title": "Workshop 2: Sprinkler, Security, and Governance Model", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-18", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "To present and evaluate GUT's initial proposed recommendations for the future-state Sprinklr integration/deprecation strategy, platform security architecture, and content/technical governance models. The goal is to collaborate with CBRE stakeholders, capture feedback, and establish a aligned baseline before finalizing the architecture design.", "agenda": "Review Sprinklr Alternatives: Share GUTâ€™s replacement strategy for Sitecore AI.\nAssess Security Architecture: Review SSO, security standards, and monitoring.\nDefine Governance: Establish roles, permissions, and team workflows.\nGather CBRE Input: Align on requirements, constraints, and target definitions.\nAssign Next Steps: Confirm actions for the final architecture review.", "feedback": []}, {"id": "recKXkSAUeAxcyP43", "title": "Design Review - Office & Geohub Page Template R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design"}], "topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design", "topics": ["Offices & Geohubs"], "subtopics": ["Offices & Geohubs Page Design"], "startMulti": "", "target": "2026-09-15", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Round 2 review of Office & Geohub Page designs. Please come prepared to participate. This is the final time to share feedback on these designs. \n\nThe Office page will be created as a simple tool to connect with a local office, with streamlined contact info.\nThe Geohub page is a new template meant to aggregate directly relevant content (e.g. insights, listings, trends) for a locale/area.", "agenda": "", "feedback": []}, {"id": "recXcs1F74U03DnOw", "title": "Design Review - Homepage & Navigation Templates R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Homepage Design"}], "topic": "Homepage & Base Pages", "subtopic": "Homepage Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Homepage Design"], "startMulti": "", "target": "2026-10-02", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of Homepage design. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe Homepage template that serves as the front-door of the CBRE digital experience.\nThe About Us is a standard company page focused on giving a broad overview of CBRE with opportunity for additional regional brand highlights.", "agenda": "", "feedback": []}, {"id": "recC9EN0FXpD4GYYp", "title": "Launch Waves Rollout Prioritization - R2 Review", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Launch Planning (US & International)", "subtopic": "Waves Prioritization"}], "topic": "Launch Planning (US & International)", "subtopic": "Waves Prioritization", "topics": ["Launch Planning (US & International)"], "subtopics": ["Waves Prioritization"], "startMulti": "", "target": "2026-08-17", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Project Managers - CBRE + Globant", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "D&T - Tech Leads", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2"], "organizer": [], "purpose": "Core Leadership R2 review of the proposed logic for wave prioritization and groupings", "agenda": "", "feedback": []}, {"id": "rec350juO6btIEQx6", "title": "Backend Assessment & Requirements Gathering", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-06-15", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "rec8jUX9b3pxVmOos", "title": "Integration Group 5 & 6 - Important Apps and Evaluate & Discard Apps", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows"}], "topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows", "topics": ["Authenticated Experience & Personalization"], "subtopics": ["Form / information capture workflows"], "startMulti": "", "target": "2026-07-15", "actual": "2026-07-15", "duration": 60, "exec": false, "tech": true, "audience": ["CBRE DM", "D&T"], "attendees": ["DM - Kristen's Directs / Leads", "Globant Tech Team", "CBRE Marketing D&T", "Project Managers - CBRE + Globant"], "organizer": ["Jesper Bunch"], "purpose": "Globant understanding of current integration and pain points", "agenda": "Important Apps:\n\\- Rent Tracker application (React-based, integrated via scripts)\n\\- Spacer\n\\- Tax Duty Calculator (New) (UK Only)\n\nKeep or discard?\n\\- Apache Solr for component-level search\n\\- Salesforce Marketing Cloud (SFMC) for embedded forms\n\\- Azure Blob Storage for media assets", "feedback": [{"label": "Integration-Group-5---Important-Apps.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Questionnaires/2.9-Integration-Specifications-Gathering/Integration-Group-5-*252D-Important-Apps.docx?d=wacf6b89b15174b0081bd96be7b069515&csf=1&web=1&e=kSWA3p__;JSUlJSUl!!GnpIGg!aOPRks4W-JfkUxK-EfWtf2zrQTYjfIZacrVavWhZnxO_UcWgjeuCEGXvUKYuphDy9wnfygtqI3G1U89aCIzVAMwcWA$"}, {"label": "Integration-Group-6---Evaluate-&-Discard?.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Questionnaires/2.9-Integration-Specifications-Gathering/Integration-Group-6-*252D-Evaluate-*26-Discard*253F.docx?d=w25d0ec598dce481b8029c5532be2760f&csf=1&web=1&e=qvDRhb__;JSUlJSUlJSU!!GnpIGg!YleXt5FQoWRgn0HRcCsBaYM5hgr4K0gl-3F2NsGWRN_0eWcluVSRVXpcHjSVmYeh2cf1PGAkeRg64MhJQtofmBQJJw$"}]}, {"id": "recRlhKDgztxwHw4l", "title": "About Us content strategy, and wireframe proposal R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "About Us & PR", "subtopic": "About Us page design"}], "topic": "About Us & PR", "subtopic": "About Us page design", "topics": ["About Us & PR"], "subtopics": ["About Us page design"], "startMulti": "", "target": "2026-09-16", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2"], "organizer": [], "purpose": "Round 2 review of Homepage content strategy and wireframes . Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nThe About Us is a standard company page focused on giving a broad overview of CBRE with opportunity for additional regional brand highlights.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recVCnl21xsPAZtUN", "title": "Enterprise DAM Assessment & Requirements Gathering", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Asset Management (DAM)"}, {"topic": "Authoring Experience", "subtopic": "Asset Management (DAM)"}], "topic": "Listings Experience", "subtopic": "Asset Management (DAM)", "topics": ["Listings Experience", "Authoring Experience"], "subtopics": ["Asset Management (DAM)", "Asset Management (DAM)"], "startMulti": "", "target": "", "actual": "2026-07-22", "duration": 90, "exec": true, "tech": true, "audience": ["CBRE DM", "D&T"], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "DM & D&T - UX Team", "Globant Strategy Team", "Project Managers - CBRE + Globant"], "organizer": ["Jesper Bunch"], "purpose": "Assess the current DAM ecosystem and define the requirements for centralized digital asset management within the SitecoreAI platform.\n\nâ€¢ Asset formats, renditions, and transformation requirements\nâ€¢ Image optimization, resizing, and delivery standards\nâ€¢ File size restrictions and storage considerations\nâ€¢ Metadata models, taxonomy, and tagging standards\nâ€¢ Governance, permissions, and asset lifecycle management\nâ€¢ Integration with Sitecore, search, and external platforms\nâ€¢ Global vs local asset sharing strategy\nâ€¢ Asset migration and consolidation approach", "agenda": "", "feedback": [{"label": "Tech Discovery Enterprise DAM - Questionnaire", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Questionnaires/Enterprise-DAM-Discovery/Tech*20Discovery*20Enterprise*20DAM*20-*20Questionnaire.docx?d=wccf2791729c045da853d32680d8f4a86&csf=1&web=1&e=GoOWrn__;JSUlJSUlJSUlJQ!!GnpIGg!bIbLBB8jqJEsGASlYOclBZT3VLGryY8F5n-LVz1y2pvAkCoHrzz0sMcyrd17hq8477amRhOwHyvvTEk7cwJ2Ip7HRg$"}]}, {"id": "rec1Xj6yOInIutrha", "title": "Visual Design Concepts Presentation R1", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "High", "topicMap": [{"topic": "Design System & Brand application", "subtopic": ""}], "topic": "Design System & Brand application", "subtopic": "", "topics": ["Design System & Brand application"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-23", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": ["DM - Kristen's Directs / Leads", "Creative", "Brand", "Project Managers - Marketing + Globant"], "organizer": ["Matt Siegel"], "purpose": "GUT to present round 1 for the Visual Design.  The design direction will be the foundation for the high-fidelity design of templates and components", "agenda": "", "feedback": []}, {"id": "reczhAl4QwkhIxC5l", "title": "Arc Accountable Executive update", "status": "", "cadence": "Recurring quarterly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": true, "tech": false, "audience": ["Sandeep + Benji"], "attendees": ["Accountable Executives"], "organizer": ["Kristen Swenson"], "purpose": "", "agenda": "", "feedback": []}, {"id": "recrXfJZ1eOCoXQcL", "title": "Information Architecture & Sitemap Workshop - BOE", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Information Architecture"], "startMulti": "", "target": "", "actual": "2026-07-22", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "Globant"], "attendees": ["DM - Kristen's Directs / Leads", "Globant Strategy Team", "D&T - Tech Leads", "Project Managers - CBRE + Globant", "BOE, Critical Infrastructure - R1"], "organizer": ["Andrea Sanchez"], "purpose": "A collaborative working session to present our current findings and proposed recommendations, actively gathering stakeholder reactions and input to validate our direction.", "agenda": "1. **Context & Discovery:** Overview of pain points and key takeaways from the stakeholder survey.\n2. **Top-Level (L1) Categories:** Reviewing the V1 proposal for primary taxonomy and gathering feedback.\n3. **Localization Principles:** Discussing localization principles.\n4. **Navigation & UI Layout:** Reviewing and reacting to proposed navigation structures and UI layouts to inform the next phase of design.", "feedback": []}, {"id": "recNvdjgmJIMHfuUH", "title": "Services Structure R1 Feedback from Workshop participants", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "", "target": "", "actual": "", "duration": 60, "exec": false, "tech": false, "audience": ["Workshop participants"], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "recAULlpZNFE1hvZA", "title": "Weekly Status (Globant_CBRE)", "status": "Reoccurring", "cadence": "Recurring weekly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "2026-07-14", "target": "", "actual": "", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": ["DM - Kristen's Directs / Leads", "D&T - Tech Leads", "Globant GUT All"], "organizer": ["Erin Moulesong"], "purpose": "Globant weekly status meeting.", "agenda": "", "feedback": []}, {"id": "reco3gpScvXXtRbwG", "title": "Integration Group 4 Workshop - Simple Embeds", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows"}], "topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows", "topics": ["Authenticated Experience & Personalization"], "subtopics": ["Form / information capture workflows"], "startMulti": "", "target": "", "actual": "2026-07-15", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant"], "organizer": ["Jesper Bunch"], "purpose": "Globant understanding of current integration and pain points", "agenda": "\\- Observable, Vev\n\\- Qumu for video management\n\\- Media Framework integrations for Brightcove and YouTube\n\\- Youtube/Vimeo - can we search if something is directing to Youtube/Vimeo?\n\\- Cohost (Podcast/Audio)\n\\- Ceros/Inforgram iframe embeds\n\\- Concep/Campaign logic", "feedback": [{"label": "Integration-Group-4---Simple-Embeds.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Questionnaires/2.9-Integration-Specifications-Gathering/Integration-Group-4-*252D-Simple-Embeds.docx?d=w27f65647ad7244c799c295df60775603&csf=1&web=1&e=DbX6FT__;JSUlJSUl!!GnpIGg!aOPRks4W-JfkUxK-EfWtf2zrQTYjfIZacrVavWhZnxO_UcWgjeuCEGXvUKYuphDy9wnfygtqI3G1U89aCIzjJUp5rg$"}]}, {"id": "rec5yT9Dq0VnCwr42", "title": "Workshop 1: Future-State Enterprise DAM Architecture Definition", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-18", "actual": "", "duration": 90, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Present GUT's initial proposal for the future-state Enterprise DAM architecture, operating model, governance, and integration strategy, and collaboratively validate the solution with CBRE to align on business, technical, and operational requirements.", "agenda": "Agenda:\nâ€¢ GUT presents the proposed Enterprise DAM architecture, operating model, and governance\nâ€¢ Review asset lifecycle, metadata model, taxonomy, renditions, and asset delivery strategy\nâ€¢ Discuss integrations, asset consumption, migration approach, and operational considerations\nâ€¢ Capture feedback, validate the proposed direction, and define the target DAM architecture and next steps", "feedback": []}, {"id": "recrTR6nOIabN0zWX", "title": "Workshop: Governance Model", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-22", "duration": 90, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": ["CBRE Digital Marketing", "CBRE Marketing D&T", "Chartis"], "organizer": ["Jesper Bunch"], "purpose": "Review the current governance and operational framework for CBRE's current Sitecore implementation across global and local teams.\n\nâ€¢ Roles and responsibilities\nâ€¢ Approval workflows and escalation paths\nâ€¢ Publishing and operational governance\nâ€¢ Shared content and component ownership\nâ€¢ Release management and platform governance\nâ€¢ Transition away from Sprinklr publishing workflows", "agenda": "", "feedback": [{"label": "CBRE Tech Discovery 2.8 Governance Model Definition - Questionnaire.do", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQCXhH15V9fKRZDrwJvbwdwaAVdfrKWD26UAcAvSvJCw7iQ?e=JvkOrW"}]}, {"id": "recCfSZaH7FPiLqeo", "title": "Design Review - Homepage & Navigation Templates R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Homepage Design"}], "topic": "Homepage & Base Pages", "subtopic": "Homepage Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Homepage Design"], "startMulti": "", "target": "2026-10-15", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 2 review of Homepage design. Please come prepared to participate. This is the final time to share feedback on these designs. \n\nThe Homepage template that serves as the front-door of the CBRE digital experience.\nThe About Us is a standard company page focused on giving a broad overview of CBRE with opportunity for additional regional brand highlights.", "agenda": "", "feedback": []}, {"id": "recY63IxNnlmotJpb", "title": "Visual Design Concepts Initial Working Session", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "High", "topicMap": [{"topic": "Design System & Brand application", "subtopic": ""}], "topic": "Design System & Brand application", "subtopic": "", "topics": ["Design System & Brand application"], "subtopics": [], "startMulti": "", "target": "2026-07-13", "actual": "2026-07-15", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Creative", "Brand", "Project Managers - Marketing + Globant"], "organizer": ["Andrea Sanchez", "Matt Dale"], "purpose": "GUT to share progress and direction for the Visual Design Direction and concept for CBRE to provide informal feedback and input. The design direction will be the foundation for the high-fidelity design of templates and components", "agenda": "", "feedback": [{"label": "The full concept deck is here", "url": "https://urldefense.com/v3/__https:/cbre-my.sharepoint.com/:p:/r/personal/matthew_siegal_cbre_com/Documents/CBRE-visualDesign-20260715.pptx?d=we3140ca0b32c4ef08c732e3f5e92bfbb&csf=1&web=1&e=a4TNmq__;!!GnpIGg!ca3cudzX45D1ICOOXDkVu0o_Ljgs2cA-h9OoY9uXtqBgw1w69e2gTZB3_lkeR29Ta36hm4IsE-WFqc-zb90oWiro5w$"}, {"label": "CBRE Feedback 07.17.2026", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/t/projectarc/IQC7zPpxo6naRKxrA1EY8b0bAcLsZtilLXtkvxsfkjrp0xI?e=kBAjsu__;!!GnpIGg!YEEaKe4qwYYzxk7IC_qf11R18K--O8yTMnoLmM4H1E6QaVpnZx9wNdm6T3wUIiv9eDn66XffGiwF1m1Vafnbxc_ZwtOf$"}, {"label": "Link", "url": "https://www.figma.com/proto/ws1PhGqh1jcoBOfJnY3REv/-review--Visual-Design-Concepts?page-id=48%3A1792&node-id=48-13032&p=f&viewport=534%2C223%2C0.24&t=sogQZFklsWF2G6fM-1&scaling=scale-down&content-scaling=fixed&starting-point-node-id=48%3A13032&show-proto-sidebar=1"}]}, {"id": "recy3SLJzhIwLG802", "title": "Design Review - Insights & Research Page Templates R2 with Research", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": "Insights & Research Page Design"}], "topic": "Insights & Research", "subtopic": "Insights & Research Page Design", "topics": ["Insights & Research"], "subtopics": ["Insights & Research Page Design"], "startMulti": "", "target": "2026-09-22", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Content - R1", "Research - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "Content - R2", "Research - R2", "DM & D&T - UX Team", "Project Managers - CBRE", "Creative"], "organizer": [], "purpose": "Round 2 review of Insights & Research Page designs. Please come prepared to participate. This is the final time to share feedback on these designs\n\nInsights Hub will be a new type of Hub page focused on encouraging discovery across all CBRE Insight materials.\nInsights Detail is a proposed new â€œInsightâ€ content templates to accommodate short and long-form content â€” focused on deep research and data visualization to build trust and authority in the CRE space.", "agenda": "", "feedback": []}, {"id": "recLczakFQHnyikRW", "title": "Sitecore AI translation assessment", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": ["DM - Kristen's Directs / Leads", "D&T - Tech Leads", "Globant Tech Team"], "organizer": ["Jesper Bunch"], "purpose": "", "agenda": "", "feedback": []}, {"id": "rec4RMwmBrSRX3h19", "title": "Design Review - Services Pages Templates Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Page Design"}], "topic": "Services", "subtopic": "Services Page Design", "topics": ["Services"], "subtopics": ["Services Page Design"], "startMulti": "", "target": "2026-08-20", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Early review of Service Page designs before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.\n\nServices Hub is the highest-level landing page that collects category content focused on a main problem customers are trying to solve.\nThe Landing Page is a base landing page providing an overview of a capability/service (or set of capabilities/services) encouraging deeper exploration.\nThe Topic Page is an alternate type of landing page with focus on a single topic (e.g. Property Types, Industries), with more content flexibility than a standard Landing.", "agenda": "", "feedback": []}, {"id": "recpnWZV6eqTf6lOQ", "title": "Property Listings content strategy, and wireframes Review R1", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Listings Page Design"}], "topic": "Listings Experience", "subtopic": "Listings Page Design", "topics": ["Listings Experience"], "subtopics": ["Listings Page Design"], "startMulti": "", "target": "2026-08-12", "actual": "2026-08-13", "duration": 90, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Real Estate Investment - R1", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant"], "organizer": ["Andrea Sanchez"], "purpose": "Round 1 review of Property Listings content strategy and wireframes.  Please come prepared to participate. Your feedback will be incorporated into the R2 review\n\nThe Property Landing Page will be a SEO-rich entry point for users to explore CBRE assets and understand inventory.\nThe Property Search Page will be the functional â€˜coreâ€™ of property discovery, allowing users to browse, evaluate, and take action on properties.\nThe Property Detail Page will be a detail page to provide full evaluation criteria and encourage contacting CBRE.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recGTDOpwlmfD2pib", "title": "Workshop: Sitecore Content Hub capabailities", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Content Creation"}], "topic": "Authoring Experience", "subtopic": "Content Creation", "topics": ["Authoring Experience"], "subtopics": ["Content Creation"], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "Demonstrate the core capabilities of Sitecore Content Hub CMP and assess how they support CBRE's future-state content operations. The workshop will identify applicable features, validate business requirements, and determine how Content Hub fits within the target content authoring and publishing operating model.", "agenda": "- Workshop Objectives\n- Sitecore Content Hub Overview\n- Core Capabilities Demonstration\n- Future-State Authoring & Content Operations\n- Requirements Validation & Gap Assessment\n- Questions & Discussion\n- Next Steps", "feedback": []}, {"id": "recvpVDUP1RLtiaqm", "title": "Content Inventory + Sprinklr Workshop", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Content creation & migration", "subtopic": ""}], "topic": "Content creation & migration", "subtopic": "", "topics": ["Content creation & migration"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-20", "duration": 90, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "DM & D&T - UX Team", "Globant Strategy Team", "Project Managers - CBRE + Globant", "Project Managers - Marketing", "Chartis Analytics", "D&T - Research"], "organizer": ["Jesper Bunch"], "purpose": "Review and catalog all existing content across the ecosystem to establish a complete understanding of content structure, ownership, and migration readiness.\n\nâ€¢ Content types, templates, and metadata\nâ€¢ Localization variants and governance\nâ€¢ Content quality, duplication, and gaps\nâ€¢ Content ownership and lifecycle\nâ€¢ Migration readiness and archival opportunities\nâ€¢ Automated content monitoring", "agenda": "", "feedback": [{"label": "2.7-Content-Inventory-Questionnaire.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Questionnaires/2.7-Content-Inventory/2.7-Content-Inventory-Questionnaire.docx?d=w706ece09e92d4e40b4d4b89b97223584&csf=1&web=1&e=9OJ76G__;JSUlJSU!!GnpIGg!bIbLBB8jqJEsGASlYOclBZT3VLGryY8F5n-LVz1y2pvAkCoHrzz0sMcyrd17hq8477amRhOwHyvvTEk7cwLtc06mZQ$"}]}, {"id": "rec2V7rNlTpacjUaO", "title": "US/Italy Launch Plan - R0.5 Review", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-10", "actual": "2026-08-14", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Project Managers - CBRE + Globant", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "D&T - Tech Leads"], "organizer": ["Andrea Sanchez"], "purpose": "Initial DM & D&T review of GUT's proposed US and Italy Launch plan", "agenda": "", "feedback": []}, {"id": "recAS1tQiWRlC5kw3", "title": "Governance Council Proposal Review R0.5", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Global vs Local content"}], "topic": "Authoring Experience", "subtopic": "Global vs Local content", "topics": ["Authoring Experience"], "subtopics": ["Global vs Local content"], "startMulti": "", "target": "", "actual": "2026-08-10", "duration": 90, "exec": true, "tech": false, "audience": [], "attendees": [], "organizer": ["Carlos Vargas"], "purpose": "Present the proposed Governance Content Framework and Governance Council operating model to validate the overall governance approach, align on governance principles, roles, decision-making processes, and gather stakeholder feedback prior to executive approval and broader organizational rollout.", "agenda": "- Introduction & Objectives\n- Governance Content Framework Overview\n- Governance Council & Operating Model\n- Roles & Responsibilities\n- Governance Roadmap & Next Steps\n- Feedback & Discussion", "feedback": []}, {"id": "recYZt0anyXEcRDhp", "title": "Offices & Geohubs content strategy, and wireframes Review R2", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design"}], "topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design", "topics": ["Offices & Geohubs"], "subtopics": ["Offices & Geohubs Page Design"], "startMulti": "", "target": "2026-08-12", "actual": "2026-08-17", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team"], "organizer": ["Andrea Sanchez"], "purpose": "Round 2 review of Office and Geohub content strategy and wireframes.  Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nThe Office page will be created as a simple tool to connect with a local office, with streamlined contact info.\nThe Geohub page is a new template meant to aggregate directly relevant content (e.g. insights, listings, trends) for a locale/area.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "reciNoph9LyPslfUz", "title": "Design Review - Services Pages Templates R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Page Design"}], "topic": "Services", "subtopic": "Services Page Design", "topics": ["Services"], "subtopics": ["Services Page Design"], "startMulti": "", "target": "2026-09-10", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Turner & Townsend - R2", "DM & D&T - UX Team", "Project Managers - Marketing + Globant"], "organizer": [], "purpose": "Round 2 review of Services Page designs. Please come prepared to participate. This is the final time to share feedback on these designs. \n\nServices Hub is the highest-level landing page that collects category content focused on a main problem customers are trying to solve.\nThe Landing Page is a base landing page providing an overview of a capability/service (or set of capabilities/services) encouraging deeper exploration.\nThe Topic Page is an alternate type of landing page with focus on a single topic (e.g. Property Types, Industries), with more content flexibility than a standard Landing.", "agenda": "", "feedback": []}, {"id": "reci87DhhAAD51JwC", "title": "Placeholder - Globant Architecture Workshop in Dallas", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "2026-08-25", "target": "2026-08-27", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "To align on architecture for Project Arc - workshops planned on Governance, DAM, and Integrations", "agenda": "", "feedback": []}, {"id": "rec9tqo3N1gZeSwVb", "title": "Design Review - Office & Geohub Page Template Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design"}], "topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design", "topics": ["Offices & Geohubs"], "subtopics": ["Offices & Geohubs Page Design"], "startMulti": "", "target": "2026-08-26", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Early review of Office & Geohub Page designs before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.\n\nThe Office page will be created as a simple tool to connect with a local office, with streamlined contact info.\nThe Geohub page is a new template meant to aggregate directly relevant content (e.g. insights, listings, trends) for a locale/area.", "agenda": "", "feedback": []}, {"id": "rectL9U3na3Rarx5A", "title": "Services Structure R1 feedback consolidation", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "", "target": "", "actual": "", "duration": 30, "exec": false, "tech": false, "audience": ["CBRE DM"], "attendees": [], "organizer": [], "purpose": "Consolidation of all feedback from workshop participants to send to Globant", "agenda": "", "feedback": []}, {"id": "receKyiO7sKqMRqMz", "title": "Person Page content strategy, and wireframes Review R1", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Person Page", "subtopic": "Person Page Design"}], "topic": "Person Page", "subtopic": "Person Page Design", "topics": ["Person Page"], "subtopics": ["Person Page Design"], "startMulti": "", "target": "", "actual": "2026-07-23", "duration": 45, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Select Marketing Leads", "Globant", "Chartis"], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant"], "organizer": ["Andrea Sanchez"], "purpose": "Round 1 review of Person Page content strategy and wireframe.  Please come prepared to participate. Your feedback will be incorporated into the R2 review.", "agenda": "1. Review components, content recipe and wireframes", "feedback": []}, {"id": "recW3euPUgH6Kr0B7", "title": "Implementation â€” Sprint Demo / Review - #10", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2027-01-26", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "rec0jTflthbvMj91s", "title": "Launch Waves Rollout Prioritization - R1 Review", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Launch Planning (US & International)", "subtopic": "US"}], "topic": "Launch Planning (US & International)", "subtopic": "US", "topics": ["Launch Planning (US & International)"], "subtopics": ["US"], "startMulti": "", "target": "2026-08-10", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Project Managers - CBRE + Globant", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "D&T - Tech Leads"], "organizer": [], "purpose": "Core Leadership R1 review of the proposed logic for wave prioritization and groupings", "agenda": "", "feedback": []}, {"id": "recQY1xjLuFjuBAro", "title": "Presentation: Future-State search architectureâ€‹", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-27", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Present the finalized future-state search and Coveo architecture.â€‹", "agenda": "Agenda:\nâ€¢ Review existing search audit results (Coveo, Elasticsearch, Solr, Property Listings) \nâ€¢ Present search index structures, searchable attributes, faceting logic, and relevance tuning \nâ€¢ Detail search API contracts and Global Listings integration approach \nâ€¢ Address questions and obtain sign-off on technical definition", "feedback": []}, {"id": "recTZM6gUd8rGMsts", "title": "Implementation â€” Sprint Demo / Review - #5", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-11-10", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "rec488hBG0JKG13xu", "title": "US/Italy Launch Plan - R2 Review", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Launch Planning (US & International)", "subtopic": "US"}], "topic": "Launch Planning (US & International)", "subtopic": "US", "topics": ["Launch Planning (US & International)"], "subtopics": ["US"], "startMulti": "", "target": "2026-08-17", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Project Managers - CBRE + Globant", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "D&T - Tech Leads", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2"], "organizer": [], "purpose": "Core Leadership R2 review of the proposed US and Italy Launch plan", "agenda": "", "feedback": []}, {"id": "recwp4NdNA3bOfJms", "title": "Architecture Design & Implementation Roadmap - I - Hosting architecture Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-11", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant"], "organizer": [], "purpose": "Review defined hosting architecture, including environment strategy, deployment approach, and integration with enterprise infrastructure", "agenda": "", "feedback": []}, {"id": "recgO24rGA3LFNhhP", "title": "SitecoreAI Office Hours", "status": "Reoccurring", "cadence": "Recurring weekly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-07-20", "actual": "", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM"], "attendees": ["DM SitecoreAI Testing"], "organizer": ["Casey Pennington"], "purpose": "To review training documentation, conduct testing, report feedback and familiarize with the system.", "agenda": "", "feedback": []}, {"id": "recufWUzZFJZjJvxe", "title": "Workshop: UX Frontend", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "2026-08-20", "target": "2026-08-20", "actual": "2026-08-20", "duration": 60, "exec": false, "tech": true, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "GUT to get a solid development understanding of CBRE's existing work on Emerald Design System, what Emerald Design System is and how GUT should utilize it for project Arc.", "agenda": "- CBRE to walkthrough & present Emerald Design System\n- CBRE to present viewpoint of how they expect GUT to work with Emerald Design System\n- CBRE to present viewpoint on ongoing repository work and collaboration with GUT/Project Arc\n- Q&A", "feedback": []}, {"id": "recmTuztdlXox3sX8", "title": "Arc Project Planning Workshop - Content", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-07", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": [], "organizer": ["Erin Moulesong"], "purpose": "To align on steps for content creation", "agenda": "", "feedback": [{"label": "Project Plan Arc Rev 5.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Project%20Plan%20Arc%20Rev%205.xlsx?d=wacd3336137b44518928dea97d4be97b8&csf=1&web=1&e=sLp7cR"}]}, {"id": "recTMUhjSXLdS9hLn", "title": "Arc Project Planning Workshop - Tech Build", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-10", "duration": 90, "exec": false, "tech": true, "audience": ["CBRE DM", "D&T"], "attendees": ["CBRE Digital Marketing", "CBRE Marketing D&T"], "organizer": ["Erin Moulesong"], "purpose": "To align on steps for product build", "agenda": "", "feedback": [{"label": "Project Plan Arc Rev 5.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Project%20Plan%20Arc%20Rev%205.xlsx?d=wacd3336137b44518928dea97d4be97b8&csf=1&web=1&e=sLp7cR"}]}, {"id": "recMNdz7WjWllNpyU", "title": "Tech weekly call with Sitecore", "status": "Reoccurring", "cadence": "Recurring weekly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": 30, "exec": false, "tech": true, "audience": ["D&T", "Sitecore", "Globant"], "attendees": ["CBRE Marketing D&T", "Globant Tech Team", "Sitecore", "Project Managers - CBRE + Globant"], "organizer": ["Erin Moulesong"], "purpose": "To discuss technical questions and receive guidance from Sitecore on CBRE's setup", "agenda": "", "feedback": [{"label": "Link", "url": "https://airtable.com/appHL2Wp1iQb2Hjp4/tblFuk06ZsgLP9Ny0/viw38UOTEgJ4q6XlV?blocks=hide"}]}, {"id": "rec2FaC7p2nWzQQri", "title": "Presentation 3: Future-State Environment Strategy & Deployment Approach", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-18", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Present the finalized environment strategy and deployment approach, including environment topology, CI/CD processes, release management, and operational practices, and obtain alignment prior to implementation.", "agenda": "â€¢ Present the finalized environment strategy and environment topology\nâ€¢ Review CI/CD pipeline, deployment model, and release management approach\nâ€¢ Validate environment governance, access model, and operational processes\nâ€¢ Address final questions, obtain stakeholder approval, and confirm implementation readiness", "feedback": []}, {"id": "rec6ef4WLLOFt3kIj", "title": "Design Review - Campaign & Base Page Templates Live Preview - Talent/Careers", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Careers", "subtopic": "Careers page design"}, {"topic": "Talent/Careers", "subtopic": ""}], "topic": "Careers", "subtopic": "Careers page design", "topics": ["Careers", "Talent/Careers"], "subtopics": ["Careers page design"], "startMulti": "", "target": "2026-08-26", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Early review of the Base and Campaign Page design for the Talent/Careers page before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.  There will NOT be a formal feedback loop after this session.\n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "", "feedback": []}, {"id": "recwUvfglFBZkOcPN", "title": "Advisor Council Meeting - Occupier", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "To align with our customers and business segments, this is the Occupier Council to provide input, validation and leadership sponsorship for Project Arc", "agenda": "", "feedback": []}, {"id": "rec6Zprc0wYLYW8gj", "title": "Campaign & Base Pages content strategy and wireframes R1 - Talent/Careers", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Careers", "subtopic": "Careers page design"}, {"topic": "Talent/Careers", "subtopic": ""}], "topic": "Careers", "subtopic": "Careers page design", "topics": ["Careers", "Talent/Careers"], "subtopics": ["Careers page design"], "startMulti": "", "target": "2026-08-03", "actual": "2026-08-04", "duration": 45, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1"], "organizer": [], "purpose": "Round 1 review of Base Page and Campaign Page content strategy and wireframe specifically for Talent/Careers pages.\n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "rec8r1ouHopSI7Bqo", "title": "Design Review - Person Page Template Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Person Page", "subtopic": "Person Page Design"}], "topic": "Person Page", "subtopic": "Person Page Design", "topics": ["Person Page"], "subtopics": ["Person Page Design"], "startMulti": "", "target": "2026-08-11", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Early review of Person Page design before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.\n\nThe Person Page is focused on personal and professional info to build connection with brokers and CBRE experts.", "agenda": "", "feedback": []}, {"id": "recoJLdDqI4SSYDmi", "title": "Offices & Geohubs content strategy, and wireframes Review R1", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design"}], "topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design", "topics": ["Offices & Geohubs"], "subtopics": ["Offices & Geohubs Page Design"], "startMulti": "", "target": "", "actual": "2026-07-30", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Select Marketing Leads", "Globant", "Chartis"], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant"], "organizer": ["Andrea Sanchez"], "purpose": "Round 1 review of Office and Geohub content strategy and wireframes.  Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe Office page will be created as a simple tool to connect with a local office, with streamlined contact info.\nThe Geohub page is a new template meant to aggregate directly relevant content (e.g. insights, listings, trends) for a locale/area.", "agenda": "1. Review components, content recipe and wireframes", "feedback": [{"label": "CBRE Location Pages.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/projectarc/Shared%20Documents/General/Content%20Templates/CBRE%20Location%20Pages.pptx?d=wb813914299f74155a688208da0a1077d&csf=1&web=1&e=G5n3RW"}]}, {"id": "recHlCwoV5se1BxFC", "title": "About Us content strategy and wireframe proposal R1", "status": "Ready to Schedule", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "About Us & PR", "subtopic": "About Us page design"}], "topic": "About Us & PR", "subtopic": "About Us page design", "topics": ["About Us & PR"], "subtopics": ["About Us page design"], "startMulti": "", "target": "2026-09-02", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1"], "organizer": [], "purpose": "Round 1 review of About Us content strategy and wireframe.  Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe About Us is a standard company page focused on giving a broad overview of CBRE with opportunity for additional regional brand highlights.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recuuwvZDu6M1Xyj7", "title": "DAM(3/4) - Requirements - listings need - GL", "status": "No longer needed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": true, "audience": ["Select Marketing Leads"], "attendees": [], "organizer": ["Subhabrat Padhi"], "purpose": "", "agenda": "", "feedback": []}, {"id": "recwvQ0KTizJbCWRr", "title": "Interlinking Strategy", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Interlinking"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Interlinking", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Interlinking"], "startMulti": "", "target": "", "actual": "2026-07-02", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": [], "organizer": ["Andrea Sanchez"], "purpose": "The strategy defines the connective logic across the site, mapping how content areas work together to guide users intuitively through their journeys. It will serve as a guiding framework for all subsequent IA and content strategy phases.", "agenda": "1\\. A brief review of the relevant outputs from the previous Project Arc engagement that informed this work.\n 2\\. Walkthrough of the interlinking strategy.\n 3\\. Discussion & feedback to align on approach before moving into content development", "feedback": []}, {"id": "recSASyBkiRpUkcMw", "title": "Architecture (Arc) - Touchbase", "status": "Reoccurring", "cadence": "Recurring weekly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["David Garcia"], "purpose": "Recurring call to align on open architecture questions for project Arc", "agenda": "", "feedback": []}, {"id": "recUcKqe5gNVV58DJ", "title": "Interlinking - Final approval", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": ""}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-08-04", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": [], "organizer": ["Erin Moulesong"], "purpose": "Setting time to discuss final recommendation of Interlinking for approval", "agenda": "", "feedback": []}, {"id": "recmZS3f510eUluMH", "title": "Design Review - Global Search & Dynamic Lists Templates R1 with Research", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "Search page design"}], "topic": "Search", "subtopic": "Search page design", "topics": ["Search"], "subtopics": ["Search page design"], "startMulti": "", "target": "2026-10-01", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of Global Search and Dynamic List design. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nGlobal Search is a federated search to maximize content discovery (final approach predicated on tech validation).\nThe Dynamic List page will be a pre-filtered page focused on browsing a full set of curated content (e.g. newsroom) â€” also used for search results that allow easy sorting and filtering to discover content.", "agenda": "", "feedback": []}, {"id": "recNG0R68DoyoqNXv", "title": "Architecture Design & Implementation Roadmap - I - SEO & Analytics Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "SEO & Analytics"}], "topic": "Search", "subtopic": "SEO & Analytics", "topics": ["Search"], "subtopics": ["SEO & Analytics"], "startMulti": "", "target": "2026-08-26", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "Chartis"], "organizer": [], "purpose": "Review proposed component architecture and structured content models\ndefined for the platform,", "agenda": "", "feedback": []}, {"id": "reco2zmGlLG7xar5B", "title": "Workshop: Sprinkler, Security, and Governance Model", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "recgJLs1xr37Hx9OX", "title": "Information Architecture & Navigation Wireframes Presentation R1", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Information Architecture"], "startMulti": "", "target": "2026-08-03", "actual": "2026-08-10", "duration": 90, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1"], "organizer": ["Andrea Sanchez"], "purpose": "Round 1 review of Information Architecture and Sitemap strategy and wireframe.  Please come prepared to participate. Your feedback will be incorporated into the R2 review.", "agenda": "", "feedback": []}, {"id": "recLSLteP6NiM4rd5", "title": "Domain Consolidation Workshop", "status": "Completed", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Information Architecture"], "startMulti": "", "target": "", "actual": "", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis", "Sitecore"], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "", "agenda": "", "feedback": []}, {"id": "recFvq0KJC7qh0aqX", "title": "Governance Council Proposal Review R2", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Global vs Local content"}], "topic": "Authoring Experience", "subtopic": "Global vs Local content", "topics": ["Authoring Experience"], "subtopics": ["Global vs Local content"], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "Review the Governance Content Framework and Governance Council with executive leadership and align on the implementation and adoption approach.", "agenda": "- Introduction & Objectives\n- Governance Content Framework Overview\n- Governance Council & Operating Model\n- Roles & Responsibilities\n- Governance Roadmap & Next Steps\n- Feedback & Discussion", "feedback": []}, {"id": "recohIgBj4S6hrI6a", "title": "Visual Design Concept Presentation R2", "status": "Blocked", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Design System & Brand application", "subtopic": ""}], "topic": "Design System & Brand application", "subtopic": "", "topics": ["Design System & Brand application"], "subtopics": [], "startMulti": "", "target": "2026-07-29", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Creative", "Brand", "Project Managers - Marketing + Globant"], "organizer": ["Andrea Sanchez"], "purpose": "GUT to present round 2 for the Visual Design for final feedback.  The design direction will be the foundation for the high-fidelity design of templates and components", "agenda": "", "feedback": []}, {"id": "rechdn7BHWUbph9it", "title": "Information Architecture & Navigation Wireframes - R1 Review with Research", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Information Architecture"], "startMulti": "", "target": "2026-08-11", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1"], "organizer": ["Lisa Anderson"], "purpose": "Internal socialization call with Research team on proposed Navigation and Sitemap", "agenda": "", "feedback": []}, {"id": "reclX1pTlvBQ0d9xG", "title": "Implementation â€” Sprint Demo / Review - #9", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2027-01-07", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "recn4Goyknvdoub86", "title": "Authenticated Experience Strategy Alignment", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "Low", "topicMap": [{"topic": "Authenticated Experience & Personalization", "subtopic": "Authenticated Experience"}], "topic": "Authenticated Experience & Personalization", "subtopic": "Authenticated Experience", "topics": ["Authenticated Experience & Personalization"], "subtopics": ["Authenticated Experience"], "startMulti": "", "target": "2026-09-22", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Advisory & Client office - US & CAN - R2", "BOE, Critical Infrastructure - R1", "DM - Production Team", "D&T - Tech Leads"], "organizer": ["Andrea Sanchez"], "purpose": "", "agenda": "", "feedback": []}, {"id": "rec4LpK2FPscW3X50", "title": "Implementation â€” Sprint Demo / Review - #3", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-10-14", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "recENiXRLjfbb0FrQ", "title": "Presentation: Future-State Enterprise DAM Architecture", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-25", "actual": "", "duration": 90, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Present the finalized future-state Enterprise DAM architecture, operating model, governance, and integration strategy, validate alignment with CBRE's business and technical objectives, and obtain approval to proceed with implementation.", "agenda": "Agenda:\nâ€¢ Present the finalized Enterprise DAM architecture, operating model, and governance\nâ€¢ Review asset lifecycle, metadata model, taxonomy, renditions, and asset delivery strategy\nâ€¢ Confirm integration architecture, migration approach, and operational model\nâ€¢ Address final questions, obtain stakeholder alignment, and confirm next steps for implementation", "feedback": []}, {"id": "recVFVt475iPzlkIa", "title": "Insights and Research content strategy, and wireframes Review R2", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": "Insights & Research Page Design"}], "topic": "Insights & Research", "subtopic": "Insights & Research Page Design", "topics": ["Insights & Research"], "subtopics": ["Insights & Research Page Design"], "startMulti": "", "target": "2026-08-19", "actual": "2026-08-19", "duration": 90, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Content - R1", "Research - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "Content - R2", "Research - R2", "DM & D&T - UX Team", "Project Managers - CBRE", "Creative"], "organizer": ["Andrea Sanchez"], "purpose": "Round 2 review of Insights & Research content strategy and wireframes.  Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nInsights Hub will be a new type of Hub page focused on encouraging discovery across all CBRE Insight materials.\nInsights Detail is a proposed new â€œInsightâ€ content templates to accommodate short and long-form content â€” focused on deep research and data visualization to build trust and authority in the CRE space.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recnw4Vqk9oOcFg1p", "title": "Sitecore Existing Data Collection architecture & pain points Part 3", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-08-06", "duration": 90, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Alexandra Cazangiu", "David Garcia"], "purpose": "To confirm existing data collection architecture, identify pain points & gaps, as well as surface any skill/resource gaps for implementation.", "agenda": "Complete the remaining details from the workshop on July 14th & 29th:\n1 â€“ Identify all the data sources (and the data its captures)\n2 â€“ Define how we are organized (teams) to deliver the work across these data sources.Â Who is dependent on each other for different actions\n3 â€“ What best practices and agreements among the different groups need to exist\n4 â€“ How do we measure success of data collection\n5 â€“ How do we take this forward into an implementation and migration plan", "feedback": [{"label": "Marketing - Data Workshop (Architecture) - Miro", "url": "https://miro.com/app/board/uXjVH8YUhsA=/"}]}, {"id": "recDWe9ZqIaHgHov7", "title": "Implementation â€” Sprint Demo / Review - #2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-09-30", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "recSUo3QHcL4tFLep", "title": "US/Italy Launch Plan - R1 Review", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Launch Planning (US & International)", "subtopic": "US"}], "topic": "Launch Planning (US & International)", "subtopic": "US", "topics": ["Launch Planning (US & International)"], "subtopics": ["US"], "startMulti": "", "target": "2026-08-10", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Project Managers - CBRE + Globant", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "D&T - Tech Leads"], "organizer": [], "purpose": "Core Leadership R1 review of the proposed US and Italy Launch plan", "agenda": "", "feedback": []}, {"id": "recKWXuBs91xITo5O", "title": "Arc Project Planning Workshop", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-06-29", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": [], "organizer": ["Alex Habib"], "purpose": "To align on project methodology, governance review cycles/attendees, and other operational items", "agenda": "", "feedback": [{"label": "Project Plan Arc Rev 5.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Project%20Plan%20Arc%20Rev%205.xlsx?d=wacd3336137b44518928dea97d4be97b8&csf=1&web=1&e=sLp7cR"}]}, {"id": "recLmjHD0kIL7e0i6", "title": "RACI - D&T & DM Review", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-06-29", "duration": 30, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T"], "attendees": [], "organizer": ["Erin Moulesong"], "purpose": "D&T and DM team to align on RACI", "agenda": "", "feedback": [{"label": "Project Arc RACI.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/projectarc/Shared%20Documents/General/Governance/Project%20Arc%20RACI.xlsx?d=weebec7c474fe4ab59ea27d96ae4857aa&csf=1&web=1&e=KjUcLY"}]}, {"id": "recTwH2SFLjJZHC8m", "title": "Project Arc Marketing Kick-off", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-06-11", "duration": 60, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "11am ET", "feedback": []}, {"id": "recTjwxER00dqa4rY", "title": "Sitecore Existing Data Collection architecture & pain points Part 2", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-29", "duration": 90, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Alexandra Cazangiu", "David Garcia"], "purpose": "To confirm existing data collection architecture, identify pain points & gaps, as well as surface any skill/resource gaps for implementation.", "agenda": "Complete the remaining details from the workshop on July 14th:\n1 â€“ Identify all the data sources (and the data its captures)\n2 â€“ Define how we are organized (teams) to deliver the work across these data sources.Â Who is dependent on each other for different actions\n3 â€“ What best practices and agreements among the different groups need to exist\n4 â€“ How do we measure success of data collection\n5 â€“ How do we take this forward into an implementation and migration plan", "feedback": [{"label": "Marketing - Data Workshop (Architecture) - Miro", "url": "https://miro.com/app/board/uXjVH8YUhsA=/"}]}, {"id": "recE5NYC9qEuUxKKl", "title": "Sitecore-Globant Workshop", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-08-04", "duration": 60, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Working session. Globant will share some viewpoints on the topics below, and the group would discuss viewpoints on these:\nâ€¢\tSite collections per region or single site collections for all sites\nâ€¢\tHandling of shared content across all sites and regional sites\nâ€¢\tSSG build impact\nâ€¢\tPublishing performance impact\nâ€¢\tHead application per site, region, or global", "agenda": "", "feedback": []}, {"id": "recBMtEDL8FA1G5Vq", "title": "Chartis-Globant SEO workshop share", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": 60, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "recZHcI51m7YTW2By", "title": "Workshop: Definition of New Sitecore Architecture, Hosting Architecture, and Environment Strategy & Deployment Approach", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-08-05", "duration": 120, "exec": true, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Present GUT's initial proposal for the future-state Sitecore architecture, hosting model, environment strategy, and deployment approach, and collaboratively validate the target architecture, key design decisions, and technical requirements with CBRE.", "agenda": "- GUT presents the initial proposal for the Sitecore architecture, hosting model, and environment strategy\n- Review architectural options, assumptions, constraints, and design considerations\n- Discuss deployment approach, integration dependencies, and operational requirements\n- Capture feedback, validate the proposed direction, and define the target architecture and next steps", "feedback": []}, {"id": "recukryNS5EUBHsIb", "title": "Design Review - Campaign & Base Page Templates R1 - Talent/Careers", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Careers", "subtopic": "Careers page design"}, {"topic": "Talent/Careers", "subtopic": ""}], "topic": "Careers", "subtopic": "Careers page design", "topics": ["Careers", "Talent/Careers"], "subtopics": ["Careers page design"], "startMulti": "", "target": "2026-09-02", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of the Base and Campaign Page design for the Talent/Careers page.  Please come prepared to participate. Your feedback will be incorporated into the R2 review.\n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "", "feedback": []}, {"id": "recEY66rv1mbq9Qcg", "title": "Visual Design Concepts Review R1 with Benji", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "High", "topicMap": [{"topic": "Design System & Brand application", "subtopic": ""}], "topic": "Design System & Brand application", "subtopic": "", "topics": ["Design System & Brand application"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-07-27", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": [], "organizer": ["Laura Hahn"], "purpose": "GUT to share v1 for the Visual Design Direction and concepts.Â The objective is to align on a single, cohesive visual direction that will serve as the foundation for the CBRE.com redesign and the high-fidelity design of templates and components.", "agenda": "", "feedback": []}, {"id": "recW0xAeB4FerzElf", "title": "Implementation â€” Sprint Demo #0", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-09-02", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "recBedTb4okSfQ6gc", "title": "Localization Assessment & Requirements Gathering", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "", "agenda": "", "feedback": [{"label": "2.2-Localization-Assessment-Requirements", "url": "https://dev.azure.com/cbre/DotCom/_wiki/wikis/DotCom.wiki/27547/2.2-Localization-Assessment-Requirements"}]}, {"id": "recZxHtzp78HbyrLk", "title": "Market Canvas Discovery session + GPS People Search", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Listings Strategy"}], "topic": "Listings Experience", "subtopic": "Listings Strategy", "topics": ["Listings Experience"], "subtopics": ["Listings Strategy"], "startMulti": "", "target": "", "actual": "2026-07-20", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Globant"], "attendees": ["DM - Kristen's Directs / Leads", "Project Managers - CBRE + Globant", "Globant Tech Team", "Globant UX team", "Globant Strategy Team", "DM & D&T - UX Team", "CBRE Marketing D&T"], "organizer": ["Subhabrat Padhi"], "purpose": "Walk through Market Canvas property experience for Globant to identify what we may want to incorporate into our Property Listings experience and evaluate what may be available in SitecoreAI.Â Â Also, cover GPS Profiles to show how broker information is maintained.", "agenda": "- Market Canvas â€“ John Sikaitis (30 min)\n    - Globant to better understand the Information architecture, areas of the Market Canvas platform\n    - See some of the different interactions\n    - Get a better understanding of what people like about Market Canvas, what's resonating (because we heard they love it)\n    - Get a better understanding of where the data comes from, and what data may be possible to display for external users (since brokers use market canvas to go through 1:1 demos currently and we understand that a lot of the data might be sensitive)\n- GPS (Profiles) â€“ Padhi (30 min)", "feedback": [{"label": "CBRE Properties Section Questions (1).docx", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Questionnaires/CBRE%20Properties%20Section%20Questions%20(1).docx?d=wb8fd84f7c26c445c82a28bde5daf0471&csf=1&web=1&e=SeukND"}]}, {"id": "rectjto8DRxy5VArg", "title": "Content Strategy", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Content creation & migration", "subtopic": ""}], "topic": "Content creation & migration", "subtopic": "", "topics": ["Content creation & migration"], "subtopics": [], "startMulti": "", "target": "", "actual": "2026-06-25", "duration": 60, "exec": false, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "", "agenda": "", "feedback": []}, {"id": "rec7MwDbQgerWklr1", "title": "Design Review - About Us Templates R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "About Us & PR", "subtopic": "About Us page design"}], "topic": "About Us & PR", "subtopic": "About Us page design", "topics": ["About Us & PR"], "subtopics": ["About Us page design"], "startMulti": "", "target": "2026-10-02", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of the About Us design. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe About Us is a standard company page focused on giving a broad overview of CBRE with opportunity for additional regional brand highlights.", "agenda": "", "feedback": []}, {"id": "recnYKgUbP3rqF7Yt", "title": "DAM(2/4) - Requirements - Market Canvas - John Sikaitis", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Listings Strategy"}], "topic": "Listings Experience", "subtopic": "Listings Strategy", "topics": ["Listings Experience"], "subtopics": ["Listings Strategy"], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": true, "audience": ["Select Marketing Leads"], "attendees": [], "organizer": ["Subhabrat Padhi"], "purpose": "", "agenda": "", "feedback": []}, {"id": "recdWMcr9EcweafM5", "title": "Architecture Design & Implementation Roadmap - I - Integration Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows"}], "topic": "Authenticated Experience & Personalization", "subtopic": "Form / information capture workflows", "topics": ["Authenticated Experience & Personalization"], "subtopics": ["Form / information capture workflows"], "startMulti": "", "target": "2026-09-16", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant"], "organizer": [], "purpose": "Review defined integration architecture and technical design", "agenda": "", "feedback": []}, {"id": "recoyyfAhMBv3oV33", "title": "Campaign & Base Pages content strategy and wireframes R1", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Base Page Design"}], "topic": "Homepage & Base Pages", "subtopic": "Base Page Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Base Page Design"], "startMulti": "", "target": "2026-08-03", "actual": "2026-08-03", "duration": 60, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1"], "organizer": [], "purpose": "Round 1 review of Base Page and Campaign Page content strategy and wireframe.  Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "Review components, content recipe and wireframes", "feedback": [{"label": "CBRE Base Page & Campaign wireframes R1.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/projectarc/Shared%20Documents/General/UX%20and%20Design/Content%20Recipe%20and%20Wireframes/CBRE%20Base%20Page%20%26%20Campaign%20wireframes%20R1.pptx?d=w77516334f4524a00870909a2447b7c56&csf=1&web=1&e=jB874G"}]}, {"id": "recBRxfl5JP39OhHo", "title": "DM & D&T Internal Weekly", "status": "Reoccurring", "cadence": "Recurring weekly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Erin Moulesong"], "purpose": "Will replace Padhiâ€™s DM D&T call to bring ahead of Globant Status/Feedback call on Tuesdays\nTopics will vary by week and will work with Andrew and Padhi to send an agenda on Friday, but consist of:\n1.\tConsolidated Feedback reviews of the latest Globant deliverables\n2.\tReview of Upcoming meetings to ensure teams prepared\n3.\tReview of Open Action Items in Airtable\n4.\tIdentification of topics for Globant Status or Benjiâ€™s Leadership team", "agenda": "", "feedback": []}, {"id": "recxH9sh9YPAgxspR", "title": "Architecture Design & Implementation Roadmap - I - SSO Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authenticated Experience & Personalization", "subtopic": "Authenticated Experience"}], "topic": "Authenticated Experience & Personalization", "subtopic": "Authenticated Experience", "topics": ["Authenticated Experience & Personalization"], "subtopics": ["Authenticated Experience"], "startMulti": "", "target": "2026-08-28", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant"], "organizer": [], "purpose": "Review defined SSO technical architecture and integration approach", "agenda": "", "feedback": []}, {"id": "rec0V4jaQLcFmPJ5g", "title": "Implementation â€” Sprint Demo / Review - #1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-09-16", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "recYY0jyxLPejMp0D", "title": "Workshop: UX Frontend Analytics", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-10", "actual": "2026-08-10", "duration": 120, "exec": false, "tech": true, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "CBRE and GUT come to a complete alignment on how Emerald Design System should be used on project Arc, how the teams should collaborate and expand on Emerald Design System, and how analytics tracking for project Arc should be tied to the Emerald Design System.", "agenda": "- GUT to present Emerald Design System & project Arc development approach including branching approach, build process, deployment & code analysis\n- GUT to present Emerald Design System analytics approach for automated event tagging and tracking\n- Q&A", "feedback": []}, {"id": "recFKZi8pDkJVj9CT", "title": "Property Listings Strategy & Tech Workshop", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Listings Experience", "subtopic": "Listings Strategy"}], "topic": "Listings Experience", "subtopic": "Listings Strategy", "topics": ["Listings Experience"], "subtopics": ["Listings Strategy"], "startMulti": "", "target": "", "actual": "2026-07-01", "duration": 120, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Chartis"], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Assess the current Property Listings ecosystem and start defining the initial requirements for the future property search and listings experience within SitecoreAI.\n\nâ€¢ Property listing backend integrations and data flows\nâ€¢ Property search architecture and indexing strategy\nâ€¢ Search filters, facets, sorting, and map-based experiences\nâ€¢ Google Maps integration analysis\nâ€¢ Listing detail page requirements and CTA flows\nâ€¢ Broker and CRM integration dependencies\nâ€¢ Listing synchronization and data refresh processes\nâ€¢ Global vs regional listing consolidation strategy\nâ€¢ Scalability and performance requirements for listings search", "agenda": "", "feedback": [{"label": "CBRE Properties Section Questions (1).docx", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQD3hP24bMJcRIKii95drwRxAd2p0rgYzfXAsaqmd84uqs0?e=sHgRss"}]}, {"id": "recHVyBsGDvFNPIRx", "title": "Design Review - Campaign & Base Page Templates R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Base Page Design"}], "topic": "Homepage & Base Pages", "subtopic": "Base Page Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Base Page Design"], "startMulti": "", "target": "2026-09-15", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 2 review of Base and Campaign Page design. Please come prepared to participate. This is the final time to share feedback on the Base and Campaign Page design. \n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "", "feedback": []}, {"id": "recfzG1P0FydeNPI0", "title": "Design Review - Campaign & Base Page Templates Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Base Page Design"}], "topic": "Homepage & Base Pages", "subtopic": "Base Page Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Base Page Design"], "startMulti": "", "target": "2026-08-26", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Early review of the Base and Campaign Page design before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.  There will NOT be a formal feedback loop after this session.\n\nThe Base Page is the lowest-level detail page template focused on a single topic and typically a single CTA.  These templates will be used for teams like PR, Corp Comms, etc\nThe Campaign Page are highly-narrative style landing pages that allow maximum customization based on content, marketing, and regional needs.", "agenda": "", "feedback": []}, {"id": "recc7xXVWPnNGkOx0", "title": "Architecture Design & Implementation Roadmap - I - Localization Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Authoring Experience", "subtopic": "Global vs Local content"}, {"topic": "Authoring Experience", "subtopic": "Translations"}], "topic": "Authoring Experience", "subtopic": "Global vs Local content", "topics": ["Authoring Experience", "Authoring Experience"], "subtopics": ["Global vs Local content", "Translations"], "startMulti": "", "target": "2026-08-24", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Chartis SEO"], "organizer": [], "purpose": "Review how multi-language and multi-region content will be structured and managed, including language architecture (fallback & hierarchy), content inheritance models, and relationships between global and local content.   Review how translation workflows will be integrated, automation opportunities and governance controls for localization processes at scale", "agenda": "", "feedback": []}, {"id": "recsUoqXOteW4NIbo", "title": "Services Structure R1 Feedback", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "", "target": "", "actual": "2026-06-09", "duration": 30, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "Review collective feedback on Services Structure from key stakeholders to present to Globant", "agenda": "", "feedback": []}, {"id": "rec15PR3kPH2Vevq0", "title": "Design Review - Person Page Template R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Person Page", "subtopic": "Person Page Design"}], "topic": "Person Page", "subtopic": "Person Page Design", "topics": ["Person Page"], "subtopics": ["Person Page Design"], "startMulti": "", "target": "2026-08-25", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team"], "organizer": [], "purpose": "Round 1 review of Person Page design. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe Person Page is focused on personal and professional info to build connection with brokers and CBRE experts.", "agenda": "", "feedback": []}, {"id": "recdDi44XPzJ6eCuQ", "title": "Design Review - Insights & Research Page Templates R1 with Research", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": "Insights & Research Page Design"}], "topic": "Insights & Research", "subtopic": "Insights & Research Page Design", "topics": ["Insights & Research"], "subtopics": ["Insights & Research Page Design"], "startMulti": "", "target": "2026-09-10", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Content - R1", "Research - R1", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Round 1 review of Insights & Research Page designs. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nInsights Hub will be a new type of Hub page focused on encouraging discovery across all CBRE Insight materials.\nInsights Detail is a proposed new â€œInsightâ€ content templates to accommodate short and long-form content â€” focused on deep research and data visualization to build trust and authority in the CRE space.", "agenda": "", "feedback": []}, {"id": "rectopOYkYU9SF4xv", "title": "Presentation 2: Future-State Hosting Architecture", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-18", "actual": "", "duration": 90, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": ["Jesper Bunch"], "purpose": "Present the finalized hosting architecture for the future-state Sitecore platform, including cloud infrastructure, and operational considerations and validate the deployment infrastructure with CBRE.", "agenda": "Agenda:\nâ€¢ Present the finalized hosting architecture and infrastructure design\nâ€¢ Review networking, security, scalability, and disaster recovery strategy\nâ€¢ Validate operational model, monitoring, and infrastructure responsibilities\nâ€¢ Address final questions, obtain stakeholder alignment, and confirm next steps", "feedback": []}, {"id": "recCjEbLKWVZv9fQj", "title": "Implementation â€” Sprint Demo / Review - #8", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-12-24", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "recGrIK1P8PtqndGS", "title": "Services Taxonomy Feedback", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Information Architecture"}], "topic": "Services", "subtopic": "Services Information Architecture", "topics": ["Services"], "subtopics": ["Services Information Architecture"], "startMulti": "", "target": "", "actual": "2026-05-28", "duration": 30, "exec": false, "tech": false, "audience": ["Globant"], "attendees": [], "organizer": [], "purpose": "Review collective feedback from key stakeholders to present to Globant", "agenda": "", "feedback": []}, {"id": "recLjw25Ic9gTlwSj", "title": "Office Hours - Project Arc", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "recvHkiE1tf433rbb", "title": "Roll-out Waves & Listings Priorities", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Launch Planning (US & International)", "subtopic": "Waves Prioritization"}], "topic": "Launch Planning (US & International)", "subtopic": "Waves Prioritization", "topics": ["Launch Planning (US & International)"], "subtopics": ["Waves Prioritization"], "startMulti": "", "target": "", "actual": "2026-07-23", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Globant"], "attendees": ["DM - Kristen's Directs / Leads", "D&T - Tech Leads", "Globant Tech Team", "Globant Strategy Team", "Project Managers - CBRE + Globant"], "organizer": ["Andrea Sanchez"], "purpose": "To align on the best way to determine the roll-out waves and align on requirements for listings experience to start wireframes", "agenda": "1. Review of CBREâ€™s prioritization criteria for localization waves\n2. Globant team to provide their thoughts on prioritization criteria and workload to balance the waves\n3. Alignment on next steps to finalize R1 of wave prioritization\n4. Kathleen to review all listings requirements collected to date to unblock first drafts of the listings wireframes", "feedback": []}, {"id": "recA6R2QpUnjeooVL", "title": "Design Review - Office & Geohub Page Template R1", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design"}], "topic": "Offices & Geohubs", "subtopic": "Offices & Geohubs Page Design", "topics": ["Offices & Geohubs"], "subtopics": ["Offices & Geohubs Page Design"], "startMulti": "", "target": "2026-09-02", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Round 1 review of Office & Geohub Page designs. Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nThe Office page will be created as a simple tool to connect with a local office, with streamlined contact info.\nThe Geohub page is a new template meant to aggregate directly relevant content (e.g. insights, listings, trends) for a locale/area.", "agenda": "", "feedback": []}, {"id": "recvuNxmmn8XxGLmo", "title": "Services content strategy, and wireframes Review R1", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Services", "subtopic": "Services Page Design"}], "topic": "Services", "subtopic": "Services Page Design", "topics": ["Services"], "subtopics": ["Services Page Design"], "startMulti": "", "target": "", "actual": "2026-07-28", "duration": 60, "exec": true, "tech": false, "audience": ["CBRE DM", "D&T", "Select Marketing Leads"], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant"], "organizer": ["Andrea Sanchez"], "purpose": "Round 1 review of Services Page content strategy and wireframes.  Please come prepared to participate. Your feedback will be incorporated into the R2 review. \n\nServices Hub is the highest-level landing page that collects category content focused on a main problem customers are trying to solve.\nThe Landing Page is a base landing page providing an overview of a capability/service (or set of capabilities/services) encouraging deeper exploration.\nThe Topic Page is an alternate type of landing page with focus on a single topic (e.g. Property Types, Industries), with more content flexibility than a standard Landing.", "agenda": "Review components, content recipe and wireframes", "feedback": [{"label": "CBRE Service Pages.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/ProjectArc-Services/Shared%20Documents/Content%20Strategy/CBRE%20Service%20Pages.pptx?d=w07a5351e9a34405b9aa9c633bc468b27&csf=1&web=1&e=8hinMe"}]}, {"id": "recf7NyykUKvaJWRy", "title": "D&T's and DM's Property Type and Industry work", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Property Types/Industry Types"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Property Types/Industry Types", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Property Types/Industry Types"], "startMulti": "", "target": "", "actual": "2026-07-20", "duration": null, "exec": false, "tech": false, "audience": ["Globant", "CBRE DM", "D&T"], "attendees": [], "organizer": ["Subhabrat Padhi", "Ganesh Prabhu"], "purpose": "", "agenda": "", "feedback": [{"label": "Data Tower defined Property & Industry types.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Information%20Architecture/Data%20Tower%20defined%20Property%20%26%20Industry%20types.xlsx?d=w05019acdfd5c4c1aafb8f28edc181a17&csf=1&web=1&e=8feIw0"}]}, {"id": "recp10tIwM4sWk8BM", "title": "Business Socialization - Advisory US/CAN", "status": "", "cadence": "", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "", "actual": "", "duration": null, "exec": false, "tech": false, "audience": [], "attendees": [], "organizer": [], "purpose": "", "agenda": "", "feedback": []}, {"id": "rectcL7kSPdjAKiUa", "title": "Insights and Research content strategy, and wireframes Review R1", "status": "Scheduled", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": "Insights & Research Page Design"}], "topic": "Insights & Research", "subtopic": "Insights & Research Page Design", "topics": ["Insights & Research"], "subtopics": ["Insights & Research Page Design"], "startMulti": "", "target": "2026-08-06", "actual": "2026-08-06", "duration": 90, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Content - R1", "Research - R1", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": ["Andrea Sanchez"], "purpose": "Round 1 review of Insights & Research content strategy and wireframe.  Please come prepared to participate. Your feedback will be incorporated into the R2 review.\n\nInsights Hub will be a new type of Hub page focused on encouraging discovery across all CBRE Insight materials.\nInsights Detail is a proposed new â€œInsightâ€ content templates to accommodate short and long-form content â€” focused on deep research and data visualization to build trust and authority in the CRE space.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recUKrtRiKW4xIarq", "title": "Arc Monthly Exec Steerco", "status": "Scheduled", "cadence": "Recurring monthly", "type": "Meeting", "priority": "", "topicMap": [], "topic": "", "subtopic": "", "topics": [], "subtopics": [], "startMulti": "", "target": "2026-08-04", "actual": "2026-08-04", "duration": 30, "exec": true, "tech": false, "audience": ["Kristen + John G"], "attendees": ["Accountable Executives", "Steerco", "Project Managers - All", "Project Managers - CBRE", "Project Managers - CBRE + Globant", "Project Managers - Marketing", "Project Managers - Marketing + Globant"], "organizer": ["Erin Moulesong"], "purpose": "To align on current status, risks, and decisions for Project Arc.", "agenda": "", "feedback": [{"label": "Project Arc Monthly Steerco June 2026.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/projectarc/Shared%20Documents/General/Governance/Steerco/Monthly%20SteerCo/Project%20Arc%20Monthly%20Steerco%20June%202026.pptx?d=w76cb0c361a934f03b2514072b037603d&csf=1&web=1&e=xaXJ5g"}]}, {"id": "recLxBf1sP1nhmbLe", "title": "Implementation â€” Sprint Demo / Review - #4", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Sprint Demo", "subtopic": "Sprint Demo"}], "topic": "Sprint Demo", "subtopic": "Sprint Demo", "topics": ["Sprint Demo"], "subtopics": ["Sprint Demo"], "startMulti": "", "target": "2026-10-28", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "DM - Production Team", "Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Turner & Townsend - R1", "Content - R1", "Talent/People - ALL", "Brand & Creative - DAM functionality", "Insights & Research Focus - R1", "Research - R1"], "organizer": [], "purpose": "Demo of recently completed features", "agenda": "", "feedback": []}, {"id": "recqmUvKsvqZqsf1w", "title": "Design Review - Insights & Research Page Templates Live Preview", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": "Insights & Research Page Design"}], "topic": "Insights & Research", "subtopic": "Insights & Research Page Design", "topics": ["Insights & Research"], "subtopics": ["Insights & Research Page Design"], "startMulti": "", "target": "2026-09-02", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Content - R1", "Research - R1", "DM & D&T - UX Team", "Project Managers - CBRE"], "organizer": [], "purpose": "Early review of Insights & Research Page designs before sharing with a larger audience. Please come prepared to participate. This session will help us identify directional preferences before formal review rounds.\n\nInsights Hub will be a new type of Hub page focused on encouraging discovery across all CBRE Insight materials.\nInsights Detail is a proposed new â€œInsightâ€ content templates to accommodate short and long-form content â€” focused on deep research and data visualization to build trust and authority in the CRE space.", "agenda": "", "feedback": []}, {"id": "rec0NvM26lcVNF8Au", "title": "Architecture Design & Implementation Roadmap - I - Sprinklr replacement - Presentation", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Insights & Research", "subtopic": "Sprinklr deprication"}], "topic": "Insights & Research", "subtopic": "Sprinklr deprication", "topics": ["Insights & Research"], "subtopics": ["Sprinklr deprication"], "startMulti": "", "target": "2026-08-24", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["DM - Kristen's Directs / Leads", "CBRE Marketing D&T", "Globant Tech Team", "Project Managers - CBRE + Globant", "Content - R1", "Creative", "Research - R1"], "organizer": [], "purpose": "Review proposed required configuration and development to transition\ncontent and workflows previously handled by the deprecated Sprinklr platform", "agenda": "", "feedback": []}, {"id": "rec9CX7AR4y1SlTOA", "title": "Data Collection Layer architecture & pain points", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Search", "subtopic": "SEO & Analytics"}], "topic": "Search", "subtopic": "SEO & Analytics", "topics": ["Search"], "subtopics": ["SEO & Analytics"], "startMulti": "", "target": "", "actual": "2026-07-14", "duration": 90, "exec": false, "tech": true, "audience": ["CBRE DM", "D&T"], "attendees": [], "organizer": ["Alexandra Cazangiu"], "purpose": "To confirm existing data layer architecture, identify pain points & gaps, as well as surface any skill/resource gaps for implementation", "agenda": "", "feedback": []}, {"id": "recPI3CE5z7uA41ID", "title": "Homepage content strategy and wireframe proposal R2", "status": "", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Homepage & Base Pages", "subtopic": "Homepage Design"}], "topic": "Homepage & Base Pages", "subtopic": "Homepage Design", "topics": ["Homepage & Base Pages"], "subtopics": ["Homepage Design"], "startMulti": "", "target": "2026-09-16", "actual": "", "duration": null, "exec": true, "tech": false, "audience": [], "attendees": ["Advisory & Client Office - US & CAN - R1", "Advisory - UK&I, CE - R1", "Advisory - APAC, MENAT & Japan - R1", "BOE, Critical Infrastructure - R1", "Real Estate Investment - R1", "Creative", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "Globant UX team", "Project Managers - CBRE + Globant", "Talent/People - ALL", "Content - R1", "Research - R1", "Turner & Townsend - R1", "Advisory & Client office - US & CAN - R2", "Advisory - UK&I, CE - R2", "Advisory - APAC, MENAT & Japan - R2", "BOE, Critical Infrastructure - R2", "Real Estate Investment - R2", "Content - R2", "Research - R2", "Turner & Townsend - R2"], "organizer": [], "purpose": "Round 2 review of Homepage content strategy and wireframes . Please come prepared to participate. This is the final time to share feedback on the wireframes and content strategy before the design phase.\n\nThe Homepage template that serves as the front-door of the CBRE digital experience.", "agenda": "Review components, content recipe and wireframes", "feedback": []}, {"id": "recsUqrFNuwa3f6Ik", "title": "Information Architecture & Sitemap Workshop", "status": "Completed", "cadence": "One-time", "type": "Meeting", "priority": "", "topicMap": [{"topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture"}], "topic": "Information Architecture, Sitemap & Navigation", "subtopic": "Information Architecture", "topics": ["Information Architecture, Sitemap & Navigation"], "subtopics": ["Information Architecture"], "startMulti": "", "target": "", "actual": "2026-07-21", "duration": 120, "exec": true, "tech": false, "audience": ["CBRE DM", "Globant"], "attendees": ["Services Focus", "DM - Kristen's Directs / Leads", "Globant Strategy Team", "D&T - Tech Leads", "Project Managers - CBRE + Globant"], "organizer": ["Andrea Sanchez"], "purpose": "A collaborative working session to present our current findings and proposed recommendations, actively gathering stakeholder reactions and input to validate our direction.", "agenda": "1. **Context & Discovery:** Overview of pain points and key takeaways from the stakeholder survey.\n2. **Top-Level (L1) Categories:** Reviewing the V1 proposal for primary taxonomy and gathering feedback.\n3. **Localization Principles:** Discussing localization principles.\n4. **Navigation & UI Layout:** Reviewing and reacting to proposed navigation structures and UI layouts to inform the next phase of design.", "feedback": [{"label": "Link", "url": "https://www.figma.com/board/50ZpcPOIaMRBxhzHrl8QLV/Full-IA-and-Navigation-Workshop?node-id=169-1689&p=f"}]}];


// Person-level resolution
const TEAM_MEMBERS = {"Chartis": ["Allie DeBaere", "Jules Allen", "Liz Young", "Matt Sussman", "Tim Eschenauer"], "Globant": ["Aaron Clanton", "Ahmed Harb", "Alex Habib", "Andrea Sanchez", "Andrei Shynkarenka", "Anita Chen", "Brianna Paul", "Carlos Vargas", "Cathrine Jermiin", "Denis Farias", "Dominick Norwood", "Edwin Guiza", "Federico De CristÃ³faro", "Goran Halvarsson", "Jacek Smaczny", "Jesper Bunch", "Joanne Sin", "Katy Martin", "Kenji Tomita", "Luis Bustamante", "Marwa Khalife", "Matt Dale", "Matt Siegel", "Mitchell Lee", "Pablo Bugani", "Phoebe Tran", "Sarang Paraskar", "Sonia Luna", "Swan Vilichay", "Zi Zheng"], "CBRE D&T": ["Brian Cornett", "Charles Sundar", "David Garcia", "John George", "Jolanda Carroll", "Kirdric Hill", "Max Simchowitz", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sandeep Dave", "Sneha Priyadarshni", "Steve Yi", "Subhabrat Padhi", "Varun Kumar", "Vikas Jain"], "CBRE DM": ["Alexandra Cazangiu", "Andrew Nadel", "Casey Pennington", "Craig Stover", "David Ting", "Eddie Wong", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Sin", "Jill Steinberg", "Joseph Servia", "Justin Ferrese", "Kathleen Garwood", "Kristen Swenson", "Kristin Hanafin", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Nestor Martinez", "Salman Arif", "Stephanie Robinson", "Ted Murena"], "CBRE Marketing": ["Ai Otsu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrew Gregory", "Anna Marissa Fetz", "Barnabas Toth", "Benji Baer", "Bernadette Keane", "Bonnie Ang", "Bradley Werner", "Brigit Bruning", "Brittany Warnica", "Buse Beysungu", "Cameron Pilkey", "Cari Drysdale", "Carlos Becil", "Celine Savy", "Charinya Youngprapakorn", "Chito Arabaca", "Cora Lai", "Debbie Celado", "Deborah Stambaugh", "Dinah Ng", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Federica Vangelisti", "Fred Gulliford", "Geoff Gaviria", "Georgie Cloke", "Grace Cary", "Greg Grunston", "Guilherme Paz", "Hannah Jeon", "Helina Hein", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jade Harper", "Jennifer Morgan", "Jess Lovell", "Jill Luna", "John Marcone", "Julie Cooper", "Kanishk Verghese", "Karen Lau", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kristina Sanderson", "Kurt Lindsey", "Kylie Johnston", "Leah King", "Leslie Motiwalla", "Lit Kris", "Melvin Lin", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nathan Webster", "Ngoc Khanh Ha Dinh", "Nick Jablonski", "Nico Bonanno", "Rachel Labowe", "Reuben Tay", "Ricky Hernden", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Al Attar", "Sarah Wyse", "Sev Ziya", "Shannon Keegan", "Stephen Smith", "TJ McCormick", "Tess Peterson", "Tian Shen", "Tim Kemp", "Vijayendra Agarwal", "Yadi Venegas", "Yvonne Ehinger"], "Advisory - APAC, MENAT & Japan": ["Ai Otsu", "Bonnie Ang", "Charinya Youngprapakorn", "Cora Lai", "Dinah Ng", "Ella Bahen", "Eric Xiao", "Hannah Jeon", "Helina Hein", "Inci Gecekusu", "Karen Lau", "Kiera Fryar", "Kylie Johnston", "Lit Kris", "Melvin Lin", "Moichi Watanabe", "Ngoc Khanh Ha Dinh", "Reuben Tay", "Rosy Luo", "Sarah Al Attar", "Tian Shen", "Tim Kemp", "Vijayendra Agarwal"], "Campaigns": ["Leah King"], "Creative": ["Chito Arabaca", "Jess Lovell", "Nathan Webster", "TJ McCormick"], "Content": ["Bradley Werner", "Brittany Warnica", "Buse Beysungu", "Greg Grunston", "Jennifer Morgan", "Kanishk Verghese", "Kurt Lindsey"], "REI": ["Emily Wilson", "Geoff Gaviria", "Rachel Labowe", "Yadi Venegas"], "Advisory - UK&I, CE": ["Barnabas Toth", "Celine Savy", "Federica Vangelisti", "Izaskun Excurra Gascue", "Julie Cooper", "Kim Stutterheim", "Kim Verdonck", "Sabine Madaus", "Sarah Wyse", "Yvonne Ehinger"], "Client Office": ["Nick Jablonski", "Shannon Keegan", "Tess Peterson"], "Corp Comms": ["James Hodson", "Jess McIntyre", "Katie Newcombe", "Katie Peters", "Lindsay Wester", "Sanket Raina", "Steve Iaco", "Thomas Hung", "Wendy Sherwood", "Whitney Davidson"], "Occupier Council": ["Anna Esteban Muela", "Brandon Forde", "Camy Tan", "Einar Schiefloe", "Emily Niguidula", "Frank McCafferty", "James Manderville", "Jesse Sellers", "Josh Bank", "Julie Ennis", "Katherine Reichelt", "Raheel Goheer", "Ryan Grainger", "Scott Schnuckel", "Tom Gaffney"], "Enterprise / Client Office": ["Amanda Borders", "Anna Esteban Muela", "Brandon Forde", "Camy Tan", "Dinah Ng", "Einar Schiefloe", "Emily Niguidula", "James Manderville", "Jesse Sellers", "Julie Ennis", "Katherine Reichelt", "Raheel Goheer", "Reuben Tay", "Ryan Grainger", "Scott Schnuckel", "Tess Peterson", "Tom Gaffney"], "Industrious": ["Carlos Becil"], "Brand": ["Brigit Bruning", "Fred Gulliford", "Sarah Wyse"], "Core Leadership": ["Benji Baer", "Debbie Celado", "Deborah Stambaugh", "Eric Xiao", "Jennifer Morgan", "Kiera Fryar", "Leslie Motiwalla", "Michelle Crecca", "Moichi Watanabe", "Nick Jablonski", "Sarah Wyse", "Vijayendra Agarwal"], "Talent/Careers": ["Debbie Celado", "Georgie Cloke", "Guilherme Paz", "Jade Harper", "John Marcone", "Nico Bonanno", "Stephen Smith"], "Investor Council": ["Chris Gardener", "Christy Chan", "Crystal Palar", "Greg Hyland", "Jennifer Johnson", "Kevin Aussef", "Kevin Moosbrugger", "Natalie Dahl", "Neil Pendleton", "Nick Hendy", "Raj Somchand", "Rishi Bhuchar"], "Private Client Segment": ["Chris Gardener", "Christy Chan", "Crystal Palar", "Greg Hyland", "Jennifer Johnson", "Kevin Aussef", "Kevin Moosbrugger", "Neil Pendleton", "Nick Hendy", "Raj Somchand", "Rishi Bhuchar"], "Institutional Segment": ["Chris Gardener", "Christy Chan", "Crystal Palar", "Greg Hyland", "Jennifer Johnson", "Kevin Moosbrugger", "Natalie Dahl", "Neil Pendleton", "Nick Hendy", "Raj Somchand", "Rishi Bhuchar"], "BOE": ["Amanda Borders", "Amanda Schlitt", "Grace Cary", "James Hodson", "Katie Peters", "Leslie Motiwalla"], "Sitecore": ["Aldo Martinez", "Dave Horrigan", "Derek Correia", "Irina Rock-Gilbertson", "Josh Frickle"], "CBRE Research": ["Ada Choi", "Darin Mellot", "Henry Chin", "Julie Whelan", "Kasia Dziewulska", "Nicole LaRusso", "Tasos Vezyridis"], "Research": ["Ada Choi", "Darin Mellot", "Henry Chin", "Julie Whelan", "Kasia Dziewulska", "Max Simchowitz", "Nicole LaRusso", "Tasos Vezyridis"], "T&T": ["Bernadette Keane", "Cari Drysdale", "Deborah Stambaugh", "Sev Ziya"], "Advisory - US, CAN": ["Alissa Van Der Westhuizen", "Andrew Gregory", "Anna Marissa Fetz", "Cameron Pilkey", "Jill Luna", "Katie Newcombe", "Kristina Sanderson", "Michelle Crecca", "Nadia Husty", "Ricky Hernden", "Sara Wilcox"], "Advisory Accounts": ["Frank McCafferty", "Josh Bank"], "International": ["Steve Yi"], "Advisory - LATAM": ["Robson Melendre"]};
const CORE_GROUPS = ["CBRE DM", "CBRE D&T", "Globant", "Chartis", "Sitecore"];
const GROUP_MEMBERS = {"Occupier Council - APAC": ["Camy Tan", "Dinah Ng", "Eddie Wong", "Eric Xiao", "Katherine Reichelt", "Reuben Tay", "Tom Gaffney", "Vijayendra Agarwal"], "Investor Council - Americas": ["Alissa Van Der Westhuizen", "Amanda Schlitt", "Anna Marissa Fetz", "Jennifer Johnson", "Katie Newcombe", "Kevin Aussef", "Kevin Moosbrugger", "Kristina Sanderson", "Laura Hahn", "Michelle Crecca", "Natalie Dahl", "Neil Pendleton", "Ricky Hernden"], "Occupier Council - Europe": ["Anna Esteban Muela", "Einar Schiefloe", "Julie Ennis", "Kathleen Garwood", "Sarah Wyse"], "CBRE Marketing D&T": ["Charles Sundar", "David Garcia", "John George", "Kirdric Hill", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sandeep Dave", "Steve Yi", "Subhabrat Padhi"], "Globant UX team": ["Cathrine Jermiin", "Denis Farias", "Joanne Sin", "Katy Martin", "Kenji Tomita", "Luis Bustamante", "Matt Dale", "Matt Siegel", "Pablo Bugani", "Sonia Luna"], "Turner & Townsend - R2": ["Bernadette Keane", "Brigit Bruning", "Cari Drysdale", "Sev Ziya"], "CBRE Digital Marketing": ["Alexandra Cazangiu", "Andrew Nadel", "Casey Pennington", "David Ting", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Grace Sin", "Jill Steinberg", "Joseph Servia", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Nestor Martinez", "Salman Arif", "Ted Murena"], "Real Estate Investment - R2": ["Geoff Gaviria"], "Advisory - UK&I, CE - R2": ["Barnabas Toth", "Celine Savy", "Federica Vangelisti", "Izaskun Excurra Gascue", "Julie Cooper", "Kim Stutterheim", "Kim Verdonck", "Sabine Madaus", "Sarah Wyse", "Yvonne Ehinger"], "Advisory - APAC, MENAT & Japan - R2": ["Ai Otsu", "Charinya Youngprapakorn", "Ella Bahen", "Eric Xiao", "Hannah Jeon", "Inci Gecekusu", "Karen Lau", "Kylie Johnston", "Melvin Lin", "Moichi Watanabe", "Ngoc Khanh Ha Dinh", "Thomas Hung", "Tian Shen", "Tim Kemp", "Vijayendra Agarwal"], "Advisory - APAC, MENAT & Japan - R1": ["Eddie Wong"], "Occupier Council - Americas - Enterprise+ClientOffice+Advisory": ["Amanda Borders", "Brandon Forde", "Emily Niguidula", "Frank McCafferty", "James Manderville", "Jesse Sellers", "Josh Bank", "Katie Newcombe", "Laura Hahn", "Michelle Crecca", "Raheel Goheer", "Ryan Grainger", "Scott Schnuckel", "Tess Peterson"], "Chartis Analytics": ["Alexandra Cazangiu", "Allie DeBaere", "Matt Sussman"], "Brand & Creative - DAM functionality": ["Chito Arabaca", "Fred Gulliford", "Nathan Webster", "TJ McCormick"], "Turner & Townsend - R1": ["Laura Hahn"], "Brand": ["Brigit Bruning", "Fred Gulliford", "Sarah Wyse"], "Project Managers - CBRE + Globant": ["Aaron Clanton", "Andrew Nadel", "Anita Chen", "Brianna Paul", "Cathrine Jermiin", "Denis Farias", "Edwin Guiza", "Erin Moulesong", "Kirdric Hill"], "Investor Council - Europe": ["Chris Gardener", "Kathleen Garwood", "Nick Hendy", "Raj Somchand", "Rishi Bhuchar", "Sarah Wyse"], "People & Offices": ["Leslie Motiwalla", "Michelle Crecca"], "Key Marketing Stakeholder": ["Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Bradley Werner", "Emily Wilson", "Fred Gulliford", "Guilherme Paz", "Jess Lovell", "Kurt Lindsey", "Nadia Husty", "Tess Peterson", "Yadi Venegas"], "Talent/People - ALL": ["Debbie Celado", "Guilherme Paz", "Lisa Anderson"], "Real Estate Investment - R1": ["Emily Wilson", "Ganesh Prabhu", "Yadi Venegas"], "Advisory - UK&I, CE - R1": ["Kathleen Garwood"], "BOE, Critical Infrastructure - R1": ["Amanda Borders", "Amanda Schlitt", "Laura Hahn"], "DM - Kristen's Directs / Leads": ["Alexandra Cazangiu", "Eddie Wong", "Ganesh Prabhu", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Ted Murena"], "Services Focus": ["Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrew Gregory", "Anna Marissa Fetz", "Barnabas Toth", "Bonnie Ang", "Brigit Bruning", "Celine Savy", "Cora Lai", "Dinah Ng", "Ella Bahen", "Federica Vangelisti", "Grace Sin", "Helina Hein", "Izaskun Excurra Gascue", "Julie Cooper", "Karen Lau", "Kathleen Garwood", "Katie Newcombe", "Kim Stutterheim", "Kim Verdonck", "Leslie Motiwalla", "Lit Kris", "Melvin Lin", "Nadia Husty", "Nick Jablonski", "Reuben Tay", "Ricky Hernden", "Rosy Luo", "Sabine Madaus", "Sanket Raina", "Sarah Al Attar", "Sarah Wyse", "Shannon Keegan", "Tess Peterson", "Tian Shen", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "Project Managers - Marketing": ["Andrew Nadel", "Erin Moulesong"], "D&T - Tech Leads": ["David Garcia", "Meher Jaynavula", "Subhabrat Padhi"], "Creative": ["Chito Arabaca", "Jess Lovell", "TJ McCormick"], "Project Managers - CBRE": ["Andrew Nadel", "Erin Moulesong", "Kirdric Hill"], "Accountable Executives": ["Benji Baer", "Marwa Khalife", "Sandeep Dave"], "Careers": ["Debbie Celado", "Guilherme Paz"], "Project Managers - All": ["Allie DeBaere", "Andrew Nadel", "Cathrine Jermiin", "Denis Farias", "Edwin Guiza", "Erin Moulesong", "Irina Rock-Gilbertson", "Kirdric Hill"], "Research - R2": ["Jennifer Morgan"], "Content - R2": ["Jennifer Morgan"], "Occupier Council - Americas - Local/SMID": ["Anna Marissa Fetz", "Laura Hahn", "Michelle Crecca", "Nadia Husty"], "Steerco": ["Aaron Clanton", "Alex Habib", "Anita Chen", "Cathrine Jermiin", "Dave Horrigan", "Denis Farias", "Erin Moulesong", "John George", "Josh Frickle", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Sarang Paraskar", "Steve Yi", "Subhabrat Padhi", "Tim Eschenauer"], "Advisory & Client Office - US & CAN - R1": ["Alissa Van Der Westhuizen", "Anna Marissa Fetz", "Kristina Sanderson", "Laura Hahn", "Lisa Anderson", "Nadia Husty", "Tess Peterson"], "Globant Strategy Team": ["Alex Habib", "Andrea Sanchez", "Cathrine Jermiin", "Denis Farias", "Jacek Smaczny", "Mitchell Lee", "Phoebe Tran", "Sarang Paraskar", "Sonia Luna", "Swan Vilichay", "Zi Zheng"], "Insights & Research Focus - R1": ["Kurt Lindsey", "Lisa Anderson"], "DM - Production Team": ["Casey Pennington", "Lisa Anderson", "Nestor Martinez"], "Chartis SEO": ["Allie DeBaere", "Ganesh Prabhu", "Joseph Servia", "Jules Allen", "Liz Young", "Salman Arif", "Tim Eschenauer"], "D&T - Research": ["Max Simchowitz"], "BOE, Critical Infrastructure - R2": ["Leslie Motiwalla"], "Ops & Finance": ["Federico De CristÃ³faro"], "Globant GUT All": ["Aaron Clanton", "Ahmed Harb", "Alex Habib", "Andrea Sanchez", "Andrei Shynkarenka", "Anita Chen", "Brianna Paul", "Cathrine Jermiin", "Denis Farias", "Dominick Norwood", "Edwin Guiza", "Federico De CristÃ³faro", "Goran Halvarsson", "Jacek Smaczny", "Jesper Bunch", "Joanne Sin", "Katy Martin", "Kenji Tomita", "Luis Bustamante", "Marwa Khalife", "Matt Dale", "Matt Siegel", "Mitchell Lee", "Pablo Bugani", "Phoebe Tran", "Sarang Paraskar", "Sonia Luna", "Swan Vilichay", "Zi Zheng"], "DM SitecoreAI Testing": ["Alexandra Cazangiu", "Andrew Nadel", "Casey Pennington", "Craig Stover", "David Ting", "Eddie Wong", "Emily Ozanian", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Sin", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kristen Swenson", "Kristin Hanafin", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Nestor Martinez", "Sneha Priyadarshni", "Stephanie Robinson", "Ted Murena"], "Comms - ALL": ["Benji Baer", "Lisa Anderson"], "Advisory & Client office - US & CAN - R2": ["Michelle Crecca", "Nick Jablonski", "Robson Melendre"], "Insights & Research Focus - R2": ["Ada Choi", "Julie Whelan", "Tasos Vezyridis"], "Investor Relations - ALL": ["Lisa Anderson", "Sarah Wyse"], "Content - R1": ["Bradley Werner", "Greg Grunston", "Kurt Lindsey", "Lisa Anderson"], "Project Managers - Marketing + Globant": ["Andrew Nadel", "Cathrine Jermiin", "Denis Farias", "Erin Moulesong"], "Globant Tech Team": ["Ahmed Harb", "Andrei Shynkarenka", "Carlos Vargas", "Cathrine Jermiin", "Denis Farias", "Dominick Norwood", "Edwin Guiza", "Goran Halvarsson", "Jesper Bunch", "Sonia Luna", "Swan Vilichay"], "CBRE Marketing Core Leadership": ["Benji Baer", "Debbie Celado", "Deborah Stambaugh", "Eric Xiao", "Jennifer Morgan", "Kylie Johnston", "Leslie Motiwalla", "Michelle Crecca", "Nick Jablonski", "Sarah Wyse", "TJ McCormick", "Vijayendra Agarwal"], "Investor Council - APAC": ["Bonnie Ang", "Christy Chan", "Crystal Palar", "Eddie Wong", "Eric Xiao", "Greg Hyland", "Katherine Reichelt", "Vijayendra Agarwal"], "Sitecore": ["Aldo Martinez", "Dave Horrigan", "Derek Correia", "Irina Rock-Gilbertson", "Josh Frickle"], "Research - R1": ["Lisa Anderson"], "DM & D&T - UX Team": ["Brian Cornett", "Craig Stover", "Laura Hahn", "Varun Kumar"], "Chartis": ["Allie DeBaere", "Jules Allen", "Liz Young", "Matt Sussman", "Tim Eschenauer"]};
const AUD_PEOPLE = {"CBRE DM": ["Andrew Nadel", "Erin Moulesong", "Casey Pennington", "Kathleen Garwood", "Lisa Anderson", "Laura Hahn", "Ganesh Prabu", "Eddie Wong", "Kristen Swenson", "Alexandra Cazangiu", "David Ting", "Matt Bodimeade", "Ted Murena", "Grace Sin", "Jill Steinberg", "Nestor Martinez", "Joseph Servia", "Salman Arif"], "D&T": ["Kirdric Hill", "Subhabrat Padhi", "Phani Abburi", "Parthi Thanikachalam", "Charles Sundar", "John George", "Meher Jaynavula", "David Garcia", "Sandeep Dave", "Steve Yi"], "Globant": ["Andrea Sanchez", "Jesper Bunch", "Aaron Clanton", "Marwa Khalife", "Sarang Paraskar", "Denis Farias", "Alex Habib", "Matt Siegel", "Cathrine Jermiin", "Edwin Guiza", "Andrei Shynkarenka", "Goran Halvarsson", "Joanne Sin", "Katy Martin", "Matt Dale", "Sonia Luna", "Swan Vilichay"], "Chartis": ["Allie DeBaere", "Tim Eschenauer", "Liz Young", "Jules Allen", "Matt Sussman"], "Sitecore": ["Irina Rock-Gilbertson", "Derek Correia", "Josh Frickle", "Dave Horrigan", "Aldo Martinez"], "Select Marketing Leads": ["Alissa Van Der Westhuizen", "Nadia Husty", "Tess Peterson", "Amanda Borders", "Amanda Schlitt", "Emily Wilson", "Yadi Venegas", "Guilherme Paz", "Kurt Lindsey", "Bradley Werner", "Fred Gulliford", "Jess Lovell"], "Benji": ["Benji Baer"], "Kristen + John G": ["Kristen Swenson", "John George"], "Sandeep + Benji": ["Sandeep Dave", "Benji Baer"]};
const LEADERSHIP = ["Kristen Swenson", "Benji Baer", "Sandeep Dave", "John George", "Nick Jablonski", "Michelle Crecca", "Laura Hahn", "Eddie Wong", "Ganesh Prabu", "Kathleen Garwood", "Alexandra Cazangiu", "Ted Murena", "Erin Moulesong", "Marwa Khalife", "Steve Yi"];

const TOPIC_TABLE = "tblO6E1ItA4afVlMc";
const TOPIC_IDS = {"Information Architecture, Sitemap & Navigation": "rec0z8z5CTs20iXi3", "Go-live Prep & UAT": "rec5Y7TA8cHRalDqz", "Listings Experience": "rec5zs4ZEHb5m5p57", "Careers": "rec628WU0nfpUFOH3", "Design System & Brand application": "rec6ZlpiKQpjrxDHP", "KPI Measurements": "rec8IUYr3u9yWkQFL", "Authoring Experience": "recFOF2xFFL0yjchq", "Authenticated Experience & Personalization": "recJPxds7CdOB9EWt", "Insights & Research": "recSMeI7InUbAzuzS", "Launch Planning (US & International)": "recSXrzQauMY6J4nF", "Content creation & migration": "recVWaGhMrDfkhUVH", "People": "recbG47YF4PTV2dbL", "Services": "rechxLVsKhZNuHSq7", "Search": "recjXYcNSnBi8yVnA", "Sprint Demo": "recoYt1bgqllqOsx1", "Homepage & Base Pages": "recrMosYhoRucSc6g", "Offices & Geohubs": "rectj92cmecxdtVYb", "About Us & PR": "recxnbEVi8LCX3zhh"};
const TOPICS = [{"name": "Information Architecture, Sitemap & Navigation", "whatIs": "Map the proposed information hierarchy, define the required sections for the site, and outline the various information levels including the navigation structure", "why": "To understand how different markets and teams expect to navigate and surface content across the site", "inputs": "", "next": "Workshops with global and local stakeholders to understand how different markets and teams expect to navigate and surface content across the site"}, {"name": "Go-live Prep & UAT", "whatIs": "Validate that all implemented components operate together correctly across the full content lifecycle", "why": "To ensure a successful website launch", "inputs": "", "next": "Gathering requirements to define test scenarios"}, {"name": "Listings Experience", "whatIs": "Defining the content strategy, and requirements for Property pages and Property searches. This includes defining Calls to Action engagements for brokers.", "why": "To accommodate varying information needs across different countries and asset classes, ensuring a consistent experience without sacrificing local or sector-specific relevance.", "inputs": "", "next": "Wireframes show the overall structure and user functionality for specific page templates"}, {"name": "Careers", "whatIs": "Defining the content strategy and page-level requirements for the Careers page (excludes Avature)", "why": "To identify opportunities to improve clarity, consistency, and effectiveness in communicating CBRE's open roles to priority user groups", "inputs": "", "next": "Wireframes show the overall structure and user functionality for specific page templates"}, {"name": "Design System & Brand application", "whatIs": "A framework for applying CBRE's brand across the digital experienceâ€”color, typography, and core visualsâ€”aligned with brand guidelines and approved concepts.", "why": "It sets principles and patterns for consistent, scalable brand use across templates and components, avoiding workarounds that harm performance, accessibility, or SEO.", "inputs": "CBRE Brand Guidelines", "next": "Visual Design begins alongside UX and wireframes, with the framework guiding page templates and components."}, {"name": "KPI Measurements", "whatIs": "Creating the KPI framework to ensure it remains aligned with current business priorities and accurately captures performance.", "why": "To ensure that the features and decisions made are measurable and align with expected business outcomes", "inputs": "", "next": "Definition and specification of the reporting requirements"}, {"name": "Authoring Experience", "whatIs": "Defining and refining the authoring experience required to support efficient content production, review, and collaboration across internal teams and external partners within the Sitecore AI platform", "why": "To guide content operations, platform management, and publishing processes", "inputs": "", "next": "Workshop to prioritize use cases against business impact, technical feasibility, and user value"}, {"name": "Authenticated Experience & Personalization", "whatIs": "Establishing a clear vision for how logged-in users should be served across the site and how personalization and gated functionality can be leveraged", "why": "To deepen engagement and support priority business outcomes and to deliver more relevant experiences across priority sections of the site", "inputs": "", "next": "Workshop to prioritize use cases against business impact, technical feasibility, and user value"}, {"name": "Insights & Research", "whatIs": "Defining the content strategy and page-level requirements for the Insights & Research pages including implementing a new content engagement & access strategy", "why": "To improve organizational clarity, thematic tagging, and overall browsability of Research content", "inputs": "", "next": "Wireframes show the overall structure and user functionality for specific page templates"}, {"name": "Launch Planning (US & International)", "whatIs": "Defining a sequenced Launch Waves rollout strategy for CBRE's in-scope websites", "why": "Creates a prioritization model to produce a recommended phased rollout strategy, defining launch waves, sequencing logic, and any prerequisite activities required prior to migration or launch.", "inputs": "", "next": "Aligning on the .com Launch timeline"}, {"name": "Content creation & migration", "whatIs": "Identifying content that will be migrated as-is and new-content needed, and allowing time for that new content to be created and approved", "why": "To ensure seamless client interaction with the new website experience", "inputs": "", "next": "Identification of new pages to be created post Information Architecture and Sitemap workshops"}, {"name": "People", "whatIs": "Defining the content strategy and page-level requirements for the People pages", "why": "To identify opportunities to improve clarity, consistency, and effectiveness in communicating CBRE's expertise, geographic presence, and organizational identity to priority user groups", "inputs": "", "next": "Wireframes show the overall structure and user functionality for specific page templates"}, {"name": "Services", "whatIs": "Defining the content strategy and page-level requirements for the Services pages based on the new Services Information Architecture", "why": "To identify opportunities to improve clarity, consistency, and effectiveness in communicating CBRE's expertise, geographic presence, and organizational identity to priority user groups", "inputs": "", "next": "Wireframes show the overall structure and user functionality for specific page templates"}, {"name": "Search", "whatIs": "Defining how search capabilities will be implemented across different use cases, including global search, broker search, site-level search, and property listings search", "why": "To improve CBRE's AI-driven discoverability, personalization, and performance", "inputs": "", "next": "Analysis of native Sitecore AI search and additional capabilities CBRE requires"}, {"name": "Sprint Demo", "whatIs": "Review features as development is completed to provide feedback", "why": "Provides ability to course correct early in the process to ensure the best outcome for authors and clients", "inputs": "", "next": "Requirements gathering"}, {"name": "Homepage & Base Pages", "whatIs": "Defining the content strategy and page-level requirements for the Homepage and standard content webpage", "why": "To identify opportunities to improve clarity, consistency, and effectiveness in communicating CBRE's expertise, geographic presence, and organizational identity to priority user groups", "inputs": "", "next": "Wireframes show the overall structure and user functionality for specific page templates"}, {"name": "Offices & Geohubs", "whatIs": "Defining the content strategy and page-level requirements for the Offices and Geohub pages", "why": "To identify opportunities to improve clarity, consistency, and effectiveness in communicating CBRE's expertise, geographic presence, and organizational identity to priority user groups", "inputs": "", "next": "Wireframes show the overall structure and user functionality for specific page templates"}, {"name": "About Us & PR", "whatIs": "Defining the content strategy and page-level requirements for the About Us and PR pages", "why": "To identify opportunities to improve clarity, consistency, and effectiveness in communicating CBRE's expertise, geographic presence, and organizational identity to priority user groups", "inputs": "", "next": "Wireframes show the overall structure and user functionality for specific page templates"}];
const SUBTOPIC_INFO = {}; // sub-topic name -> {whatIs, why, inputs, next} from Meeting Sub-topics table
const SUBTOPICS = {"Page Layout Visual Design": ["Sub Topic 1", "Sub Topic 2"], "AI Search": ["Sub Topic 3"]};
const PERSON_TEAM = {"Liz Young": "Chartis", "Andrea Sanchez": "Globant", "Sandeep Dave": "CBRE D&T", "Matt Bodimeade": "CBRE DM", "Lit Kris": "CBRE Marketing", "Leah King": "CBRE Marketing", "Chito Arabaca": "CBRE Marketing", "Nathan Webster": "CBRE Marketing", "George Austen": "CBRE DM", "Charles Sundar": "CBRE D&T", "Jolanda Carroll": "CBRE D&T", "Andrew Nadel": "CBRE DM", "Bradley Werner": "CBRE Marketing", "Kirdric Hill": "CBRE D&T", "Jacek Smaczny": "Globant", "Yadi Venegas": "CBRE Marketing", "Matt Sussman": "Chartis", "Kim Verdonck": "CBRE Marketing", "Sabine Madaus": "CBRE Marketing", "Shannon Keegan": "CBRE Marketing", "Wendy Sherwood": "Corp Comms", "Einar Schiefloe": "Occupier Council", "Subhabrat Padhi": "CBRE D&T", "Carlos Becil": "CBRE Marketing", "Sarah Wyse": "CBRE Marketing", "John Marcone": "CBRE Marketing", "Meher Jaynavula": "CBRE D&T", "TJ McCormick": "CBRE Marketing", "Casey Pennington": "CBRE DM", "Justin Ferrese": "CBRE DM", "Edwin Guiza": "Globant", "Zi Zheng": "Globant", "Ai Otsu": "CBRE Marketing", "Sarang Paraskar": "Globant", "Kim Stutterheim": "CBRE Marketing", "Cora Lai": "CBRE Marketing", "Rishi Bhuchar": "Investor Council", "Federico De CristÃ³faro": "Globant", "Jess McIntyre": "Corp Comms", "Brigit Bruning": "CBRE Marketing", "Matt Siegel": "Globant", "Inci Gecekusu": "CBRE Marketing", "Katy Martin": "Globant", "Jennifer Morgan": "CBRE Marketing", "Vijayendra Agarwal": "CBRE Marketing", "Stephen Smith": "CBRE Marketing", "Neil Pendleton": "Investor Council", "Kenji Tomita": "Globant", "Salman Arif": "CBRE DM", "James Hodson": "Corp Comms", "Eric Xiao": "CBRE Marketing", "Goran Halvarsson": "Globant", "Kristen Swenson": "CBRE DM", "Derek Correia": "Sitecore", "Tim Kemp": "CBRE Marketing", "Brandon Forde": "Occupier Council", "Jade Harper": "CBRE Marketing", "Joanne Sin": "Globant", "Grace Sin": "CBRE DM", "Joseph Servia": "CBRE DM", "Emily Ozanian": "CBRE DM", "Kurt Lindsey": "CBRE Marketing", "Henry Chin": "CBRE Research", "Hannah Jeon": "CBRE Marketing", "Pablo Bugani": "Globant", "Fred Gulliford": "CBRE Marketing", "Barnabas Toth": "CBRE Marketing", "Greg Grunston": "CBRE Marketing", "Rosy Luo": "CBRE Marketing", "Deborah Stambaugh": "CBRE Marketing", "Max Simchowitz": "CBRE D&T", "Tim Eschenauer": "Chartis", "Lindsay Wester": "Corp Comms", "Federica Vangelisti": "CBRE Marketing", "Jesse Sellers": "Occupier Council", "Julie Whelan": "CBRE Research", "Nestor Martinez": "CBRE DM", "Emma Joyce": "CBRE DM", "Leslie Motiwalla": "CBRE Marketing", "Tess Peterson": "CBRE Marketing", "Dominick Norwood": "Globant", "Sneha Priyadarshni": "CBRE D&T", "Kanishk Verghese": "CBRE Marketing", "Sara Wilcox": "CBRE Marketing", "Kevin Moosbrugger": "Investor Council", "Camy Tan": "Occupier Council", "Bernadette Keane": "CBRE Marketing", "Jennifer Johnson": "Investor Council", "Ted Murena": "CBRE DM", "Alissa Van Der Westhuizen": "CBRE Marketing", "Julie Cooper": "CBRE Marketing", "Frank McCafferty": "Occupier Council", "Varun Kumar": "CBRE D&T", "Natalie Dahl": "Investor Council", "Parthi Thanikachalam": "CBRE D&T", "Eddie Wong": "CBRE DM", "Kristin Hanafin": "CBRE DM", "Debbie Celado": "CBRE Marketing", "Buse Beysungu": "CBRE Marketing", "David Ting": "CBRE DM", "Kylie Johnston": "CBRE Marketing", "Moichi Watanabe": "CBRE Marketing", "Nico Bonanno": "CBRE Marketing", "Michelle Crecca": "CBRE Marketing", "Mitchell Lee": "Globant", "Raheel Goheer": "Occupier Council", "Christy Chan": "Investor Council", "Thomas Hung": "Corp Comms", "Marwa Khalife": "Globant", "Kasia Dziewulska": "CBRE Research", "Denis Farias": "Globant", "Kevin Aussef": "Investor Council", "Jill Steinberg": "CBRE DM", "Tasos Vezyridis": "CBRE Research", "Georgie Cloke": "CBRE Marketing", "Jules Allen": "Chartis", "Allie DeBaere": "Chartis", "Katie Newcombe": "Corp Comms", "Ryan Grainger": "Occupier Council", "Steve Yi": "CBRE D&T", "Grace Cary": "CBRE Marketing", "Emily Wilson": "CBRE Marketing", "Andrei Shynkarenka": "Globant", "Carlos Vargas": "Globant", "Ada Choi": "CBRE Research", "Scott Schnuckel": "Occupier Council", "Swan Vilichay": "Globant", "Melvin Lin": "CBRE Marketing", "Karen Lau": "CBRE Marketing", "Steve Iaco": "Corp Comms", "Greg Hyland": "Investor Council", "Aldo Martinez": "Sitecore", "Amanda Schlitt": "CBRE Marketing", "Charinya Youngprapakorn": "CBRE Marketing", "Ella Bahen": "CBRE Marketing", "Ricky Hernden": "CBRE Marketing", "John George": "CBRE D&T", "Andrew Gregory": "CBRE Marketing", "Nadia Husty": "CBRE Marketing", "Anita Chen": "Globant", "Nicole LaRusso": "CBRE Research", "Brittany Warnica": "CBRE Marketing", "Reuben Tay": "CBRE Marketing", "Guilherme Paz": "CBRE Marketing", "Josh Frickle": "Sitecore", "Cameron Pilkey": "CBRE Marketing", "Matt Dale": "Globant", "Helina Hein": "CBRE Marketing", "Josh Bank": "Occupier Council", "Nick Hendy": "Investor Council", "Ganesh Prabhu": "CBRE DM", "Cathrine Jermiin": "Globant", "Kristina Sanderson": "CBRE Marketing", "Craig Stover": "CBRE DM", "James Manderville": "Occupier Council", "Lisa Anderson": "CBRE DM", "Vikas Jain": "CBRE D&T", "Julie Ennis": "Occupier Council", "Benji Baer": "CBRE Marketing", "Alexandra Cazangiu": "CBRE DM", "Anna Esteban Muela": "Occupier Council", "Kathleen Garwood": "CBRE DM", "Katherine Reichelt": "Occupier Council", "Irina Rock-Gilbertson": "Sitecore", "Aaron Clanton": "Globant", "Raj Somchand": "Investor Council", "Jill Luna": "CBRE Marketing", "Ahmed Harb": "Globant", "Geoff Gaviria": "CBRE Marketing", "Brianna Paul": "Globant", "Tom Gaffney": "Occupier Council", "Jess Lovell": "CBRE Marketing", "Sarah Al Attar": "CBRE Marketing", "Alex Habib": "Globant", "Stephanie Robinson": "CBRE DM", "Emily Niguidula": "Occupier Council", "Bonnie Ang": "CBRE Marketing", "Celine Savy": "CBRE Marketing", "Yvonne Ehinger": "CBRE Marketing", "David Garcia": "CBRE D&T", "Ngoc Khanh Ha Dinh": "CBRE Marketing", "Nick Jablonski": "CBRE Marketing", "Kiera Fryar": "CBRE Marketing", "Katie Peters": "Corp Comms", "Crystal Palar": "Investor Council", "Phani Abburi": "CBRE D&T", "Erin Moulesong": "CBRE DM", "Rachel Labowe": "CBRE Marketing", "Robson Melendre": "CBRE Marketing", "Amanda Borders": "CBRE Marketing", "Anna Marissa Fetz": "CBRE Marketing", "Laura Hahn": "CBRE DM", "Dinah Ng": "CBRE Marketing", "Tian Shen": "CBRE Marketing", "Jesper Bunch": "Globant", "Whitney Davidson": "Corp Comms", "Chris Gardener": "Investor Council", "Darin Mellot": "CBRE Research", "Sonia Luna": "Globant", "Cari Drysdale": "CBRE Marketing", "Izaskun Excurra Gascue": "CBRE Marketing", "Brian Cornett": "CBRE D&T", "Sev Ziya": "CBRE Marketing", "Luis Bustamante": "Globant", "Dave Horrigan": "Sitecore", "Sanket Raina": "Corp Comms", "Phoebe Tran": "Globant"};
const OPEN_ITEMS = [{"id": "rec0OM79JR6gf5v6T", "name": "Align on CEP roadmap and Listings timelines", "owners": ["Kathleen Garwood"], "status": "In progress", "priority": "Medium", "risk": "", "due": "2026-07-31", "kristen": false, "benji": false, "execRel": false, "source": "Email from Kathleen on 7/8 re: Property Listings Call with Steve Yi scheduled for 16 July to discuss.", "note": "Re CZ & SK timing for Arc/CEP", "links": []}, {"id": "rec2SLFvooobjk5xv", "name": "Localization findings Review", "owners": ["Kathleen Garwood", "Lisa Anderson", "Subhabrat Padhi", "Eddie Wong", "Ganesh Prabhu", "Ted Murena"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-13", "kristen": false, "benji": false, "execRel": true, "source": "", "note": "Pending Meher & David", "links": [{"label": "CBRE Tech Discovery 2.2 Localization Assessment Findings.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.2*20Localization*20Assessment*20Findings.docx?d=w31a2474f544341799921a53ca5da49f2&csf=1&web=1&e=ardx8d__;JSUlJSUlJSUlJSU!!GnpIGg!dE03Uq1tRg6My53kcdKl75nOeSgRDWXeDnoNFgz7u5Yephmz9Ld2EmDx6uFoWo1ThAlJXPA6pSD2aNNr0LLnirOwwA$"}]}, {"id": "rec41VlQRJR7OocND", "name": "Validate new regional GTM container architecture aligns with cross-domain tracking requirements", "owners": ["Jesper Bunch"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Integration group 3 Chartis workshop 7/8", "note": "", "links": []}, {"id": "rec4HZfo2zyg8HSuZ", "name": "Socialization - Setup Occupier and Investor council meetings globally", "owners": ["Kristen Swenson"], "status": "Not Started", "priority": "High", "risk": "", "due": "", "kristen": true, "benji": true, "execRel": true, "source": "", "note": "", "links": []}, {"id": "rec5RyaJip0pc6CPM", "name": "Hire Architect", "owners": ["Meher Jaynavula"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "rec5UKra7J0uPyb6M", "name": "Feedback R1 - Visual Design Concepts", "owners": ["Craig Stover"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-28", "kristen": true, "benji": false, "execRel": true, "source": "Visual Design Concepts R1", "note": "", "links": [{"label": "CBRE-visualDesign-20260723", "url": "https://cbre.sharepoint.com/:b:/r/teams/projectarc/Shared%20Documents/General/UX%20and%20Design/Concepts/CBRE-visualDesign-20260723.pdf?csf=1&web=1&e=0NMwqh"}, {"label": "CBRE Feedback 07.23.2026.docx", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQBDMZEs9KK9SqF1LkGrrbCAAQw_B9bC9MLvBvtgfH7uY-0?e=2u3238"}]}, {"id": "rec5wujHPnC1m34m5", "name": "Share user preference management process", "owners": ["Ted Murena", "Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Integration group 3 Chartis workshop 7/8", "note": "", "links": []}, {"id": "rec6Dmfd8CM9eMTiy", "name": "Market Canvas Workshop for Globant", "owners": ["Subhabrat Padhi"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-24", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "Pending call with John S on 7/14 to align on who to attend/show â€¢ In general, better understand the IA, areas of the Market Canvas platform â€¢ See some of the different interactions â€¢ Get a better unde", "links": []}, {"id": "rec6Du9rfAilBHLFB", "name": "Refine User Researcher testing plan and activities (authoring & clients)", "owners": ["Craig Stover"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "2026-07-31", "kristen": false, "benji": false, "execRel": false, "source": "User Research for Project Arc 7/10", "note": "", "links": []}, {"id": "rec7M7kbInkM0Jffp", "name": "Define Content Strategy Council and global content strategy role", "owners": ["Lisa Anderson", "Kathleen Garwood", "Eddie Wong"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Governance model 7/22", "note": "", "links": []}, {"id": "rec7lWPxHOhib8Tmo", "name": "Domain costs by country/site", "owners": ["Subhabrat Padhi", "Kathleen Garwood", "Eddie Wong", "Swan Vilichay"], "status": "In progress", "priority": "Medium", "risk": "", "due": "2026-07-31", "kristen": false, "benji": false, "execRel": false, "source": "Kristen email 7/6 re: domain strategy", "note": "", "links": []}, {"id": "rec834LK1tt6CQuA1", "name": "GL Traffic data on form activity", "owners": ["Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Property Listings workshop 7/1", "note": "", "links": []}, {"id": "rec8FIsoVLgzkSuzb", "name": "Update UX batching plan to 3 batches and timeline updates", "owners": ["Matt Siegel"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-14", "kristen": false, "benji": false, "execRel": false, "source": "UX batches meeting 7/6", "note": "", "links": []}, {"id": "rec8OhmESXYjs5PPY", "name": "Salesforce integration plan review (CM, Pursuits, CIQ) & Data feedback loop", "owners": ["Subhabrat Padhi", "Kristen Swenson"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "2026-08-28", "kristen": true, "benji": false, "execRel": true, "source": "Arc Monthly Steerco 7/6", "note": "", "links": []}, {"id": "rec8j9MbUdiQW4IOo", "name": "Define migration requirements", "owners": ["Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "UX batches meeting 7/6", "note": "", "links": []}, {"id": "rec97bOtJJgrstCHz", "name": "R1 Review - Office & Geohubs wireframes R1", "owners": ["Lisa Anderson", "Kathleen Garwood", "Eddie Wong", "Kristen Swenson", "Laura Hahn", "Ganesh Prabhu", "Alexandra Cazangiu", "Ted Murena", "Subhabrat Padhi"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-04", "kristen": true, "benji": false, "execRel": true, "source": "Office & Geohubs Content Strategy and Wireframe R1 on 7/30", "note": "", "links": [{"label": "CBRE Location Pages.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/projectarc/Shared%20Documents/General/Content%20Templates/CBRE%20Location%20Pages.pptx?d=wb813914299f74155a688208da0a1077d&csf=1&web=1&e=LPVZeo"}]}, {"id": "rec9LByqeXB4jjwHW", "name": "Findings Review - Integration Groups 4 (Simple Embeds) - Final", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "Meher Jaynavula", "David Garcia", "Ted Murena", "Kathleen Garwood", "Lisa Anderson", "Laura Hahn", "Kristen Swenson", "Eddie Wong"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-07", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/31", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 4 - Simple Embed Findings - ", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.9*20Integration*20Group*204*20-*20Simple*20Embed*20Findings*20-*20Final.docx?d=w144ddcb7ee834fd3829a0dec86c6bc4a&csf=1&web=1&e=ej8fRe__;JSUlJSUlJSUlJSUlJSUlJSU!!GnpIGg!bGlC0lJYPhWEM-EsyXkU0VrNzKqagRxAJvcnJi5UOKz88chiHXfoeTeRbEFCkpm90VmWf4kyzl0Xg3j_dOBgPpsIKA$"}]}, {"id": "rec9vuThWy5CgCVHx", "name": "Establish RACI", "owners": ["Erin Moulesong"], "status": "In progress", "priority": "Medium", "risk": "Green", "due": "2026-07-31", "kristen": true, "benji": true, "execRel": false, "source": "", "note": "Chartis and Globant feedback received. Assignment of key areas to DM leads planned for 7/20 and should be last area of responsiblity", "links": [{"label": "Project Arc RACI.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/projectarc/Shared%20Documents/General/Governance/Project%20Arc%20RACI.xlsx?d=weebec7c474fe4ab59ea27d96ae4857aa&csf=1&web=1&e=0jega1"}]}, {"id": "recAkque0ZFq5V5CI", "name": "SEO data on UK property pages", "owners": ["Kathleen Garwood"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-12", "kristen": false, "benji": false, "execRel": false, "source": "Property Listings workshop 7/1", "note": "", "links": []}, {"id": "recB8SXCL0MgvCMaa", "name": "Questionnaire - Search/Coveo", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "Meher Jaynavula", "David Garcia", "Kathleen Garwood", "Ganesh Prabhu", "Lisa Anderson", "Laura Hahn", "Ted Murena", "Alexandra Cazangiu", "Craig Stover", "Allie DeBaere"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-24", "kristen": true, "benji": false, "execRel": true, "source": "", "note": "", "links": [{"label": "CBRE Tech Discovery 2.3 Search Assessment + Integration Group 7 Coveo ", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Questionnaires/2.3-Search-Assessment-%26-Requirements-Gathering/CBRE%20Tech%20Discovery%202.3%20Search%20Assessment%20+%20Integration%20Group%207%20Coveo%20-%20Questionnaire.docx?d=w07394d3718084badaac342661f7cf4cf&csf=1&web=1&e=WouIic"}]}, {"id": "recBRqpsTIm2UdzON", "name": "Email to content and creative team for involvement in Arc workshops", "owners": ["Kristen Swenson", "Laura Hahn", "Lisa Anderson"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-14", "kristen": false, "benji": false, "execRel": false, "source": "Email from Kristen 7/10 re: Design Email to Content team?", "note": "", "links": [{"label": "Marketing Stakeholder Messaging - Workstreams and Meetings.docx", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQCUZqXMPNX1TLoRHtC2NAcSAaEvl5Pu45muO0dpevlj154?e=X1LoWo"}]}, {"id": "recDlIBUMLeS8aPOy", "name": "Backend assessment findings review", "owners": ["Subhabrat Padhi", "Lisa Anderson", "Alexandra Cazangiu", "Ted Murena", "Ganesh Prabhu", "Kathleen Garwood"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-13", "kristen": false, "benji": false, "execRel": true, "source": "", "note": "Pending Meher & David", "links": [{"label": "CBRE Tech Discovery 2.1 Backend Assessment Findings.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.1*20Backend*20Assessment*20Findings.docx?d=wf7c5af6d970f4909b49e0a08e3b8b9ac&csf=1&web=1&e=n7jImf__;JSUlJSUlJSUlJSU!!GnpIGg!ajC6AC0LrDs96ER9uWvAnCuIsx-wIzripmHQ032P1CeYfqXc1E6nSl43iNBKn-pJLUuSWFXrO6N4A3ahtn5rO1GU1Q$"}]}, {"id": "recDnch62JKXd9atP", "name": "Monthly Arc newsletter for Marketing", "owners": ["Erin Moulesong"], "status": "In progress", "priority": "Medium", "risk": "", "due": "2026-08-03", "kristen": true, "benji": false, "execRel": true, "source": "Daily Stand-up: Kristen/Laura/Erin", "note": "", "links": []}, {"id": "recE8AkWamlnC9cvn", "name": "Findings Review - 2.9 Group 8 - Sprinklr", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu", "Alexandra Cazangiu", "Laura Hahn", "Kristen Swenson", "Ted Murena", "Lisa Anderson"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-03", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/28", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 8 - Sprinklr Assessment Find", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Findings/CBRE%20Tech%20Discovery%202.9%20Integration%20Group%208%20-%20Sprinklr%20Assessment%20Findings.docx?d=w949e7f976dcc4c9eae264d649d7872f0&csf=1&web=1&e=e89xmg"}]}, {"id": "recEGPfGVplrLnltG", "name": "GCSO awareness of Project Arc", "owners": ["Subhabrat Padhi", "David Garcia"], "status": "In progress", "priority": "Low", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Security Monitoring Workshop 7/1", "note": "", "links": []}, {"id": "recEU44M7EdhXIHei", "name": "Dashboard feedback", "owners": ["Andrew Nadel"], "status": "In progress", "priority": "Medium", "risk": "", "due": "2026-07-24", "kristen": false, "benji": false, "execRel": false, "source": "Email 7/10 re: potential template", "note": "", "links": [{"label": "Dashboard", "url": "https://claude.ai/code/artifact/2c305d7d-fd4e-49fe-85f6-b30c380a28cd"}, {"label": "Feedback\\_Project Arc Dashboard 7\\_1\\_26.docx", "url": "https://cbre.sharepoint.com/:w:/r/sites/GlobalWebMarketing/_layouts/15/Doc.aspx?sourcedoc=%7B33808FEE-CF91-4310-9295-C11F9B41A503%7D&file=Feedback_Project%20Arc%20Dashboard%207_1_26.docx&wdLOR=c14FFEC6E-B489-6240-99FF-E89C4D2DF7AF&action=default&mobileredirect=true"}]}, {"id": "recFiucvUj3vRqzMK", "name": "Update complete team structure and responsibilitiesâ€‹", "owners": ["Aaron Clanton", "Erin Moulesong"], "status": "No longer needed", "priority": "Low", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recFxHEN7dV5MLxOh", "name": "Feedback R2 - Interlinking", "owners": ["Lisa Anderson"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-23", "kristen": true, "benji": false, "execRel": true, "source": "Interlinking Rd2 Presentation", "note": "Need DM Lead to consolidate feedback on the Interlinking Rd2 Deck.", "links": [{"label": "CBRE Interlinking Strategy V2.pptx", "url": "https://cbre.sharepoint.com/:p:/t/ProjectArc-Services/IQC59ilHBU7yRZfkGntNkrb-ASprvr6rvO2dxVxNgq6-zNc?e=Dhoh2B"}, {"label": "Interlinking strategy v2 - 7.17.26", "url": "https://cbre.sharepoint.com/:f:/t/projectarc/IgBSV4CNAIkiRJ4Y9TXIq0sFAd_e9kv0MHdshEmzV-RiwmY?e=eTmsW0"}]}, {"id": "recG029JJ7gRoEROC", "name": "Validate specialized experiences before finalizing template strategy", "owners": ["Lisa Anderson"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-17", "kristen": false, "benji": false, "execRel": false, "source": "UX batches meeting 7/6", "note": "Property Search, Insights & Research, People, Careers, etc", "links": []}, {"id": "recGFlQzAm15AzO9o", "name": "Confirm attendees for Authenticated experience workshops", "owners": ["Laura Hahn"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-15", "kristen": false, "benji": false, "execRel": false, "source": "DM DT Arc call 7/8", "note": "", "links": [{"label": "@Erin Moulesong", "url": "https://airtable.com/appHL2Wp1iQb2Hjp4/menF2DpmEjP7A2yZG/usrOLSpnwWUKXaRBd?recordId=recGFlQzAm15AzO9o&fieldId=fld8wgtaX57wS3dXk"}, {"label": "@Andrew Nadel", "url": "https://airtable.com/appHL2Wp1iQb2Hjp4/menOyrkUnlnBp8ywF/usrJA3yjzuGpbeV9Q?recordId=recGFlQzAm15AzO9o&fieldId=fld8wgtaX57wS3dXk"}, {"label": "@Lisa Anderson", "url": "https://airtable.com/appHL2Wp1iQb2Hjp4/menvH8ZmgdS0TPjeB/usr7ItPZmOoqtEGh9?recordId=recGFlQzAm15AzO9o&fieldId=fld8wgtaX57wS3dXk"}]}, {"id": "recGI9vwEZVNTiOpW", "name": "Milestone tracker for Aug Steerco", "owners": ["Erin Moulesong"], "status": "Not Started", "priority": "Low", "risk": "", "due": "2026-07-27", "kristen": false, "benji": false, "execRel": false, "source": "Arc Monthly Steerco 7/6", "note": "", "links": []}, {"id": "recGyQYbGKEYa7hsl", "name": "R1 Review - Campaign and Base Pages R1", "owners": ["Lisa Anderson", "Kathleen Garwood", "Eddie Wong", "Kristen Swenson", "Laura Hahn", "Ganesh Prabhu", "Alexandra Cazangiu", "Ted Murena", "Subhabrat Padhi"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-06", "kristen": true, "benji": false, "execRel": true, "source": "Base & Campaign Page R1 on 8/3", "note": "", "links": [{"label": "CBRE Base Page & Campaign wireframes R1.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/projectarc/Shared%20Documents/General/UX%20and%20Design/Content%20Recipe%20and%20Wireframes/CBRE%20Base%20Page%20%26%20Campaign%20wireframes%20R1.pptx?d=w77516334f4524a00870909a2447b7c56&csf=1&web=1&e=lj34Fx"}]}, {"id": "recHDqUbDMJpMgyBp", "name": "Cloudflare workers", "owners": ["Subhabrat Padhi"], "status": "Done", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": [{"label": "Cloudflare Redirects", "url": "https://cbre.sharepoint.com/:f:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Cloudflare%20Redirects?csf=1&web=1&e=XRjmUl&xsdata=MDV8MDJ8fDhkYTRkZjRmODI0YTRhNTQ3NThiMDhkZWRlOTY5NmU0fDAxNTllOWQwMDlhMDRlZGY5NmJhYTNkZWVhMzYzYzI4fDB8MHw2MzkxOTI5MzU0OTEyMDQ0OTF8VW5rbm93bnxWR1ZoYlhOVFpXTjFjbWwwZVZObGNuWnBZMlY4ZXlKRFFTSTZJbFJsWVcxelgwRlVVRk5sY25acFkyVmZVMUJQVEU5R0lpd2lWaUk2SWpBdU1DNHdNREF3SWl3aVVDSTZJbGRwYmpNeUlpd2lRVTRpT2lKUGRHaGxjaUlzSWxkVUlqb3hNWDA9fDF8TDJOb1lYUnpMekU1T21abU1qbG1PRE0yTTJOa05EUXhPVFk0TUdabFpXTTBZek15WVdFek56TTBRSFJvY21WaFpDNTJNaTl0WlhOellXZGxjeTh4Tnpnek5qazJOelExT0RrenwwNzUxZjU3OTc1OGQ0Njk3MTM5NzA4ZGVkZTk2OTZlNHxmYWJjN2QxMzkxMTU0YWFlOWYzZWRmNzM2YTljZjgxOQ%3D%3D&sdata=V3FRM2VMZ2R1TnhqbTR5ZU0xWiswZzExS3I4Z2JYcE1UaVY4VXVwZ1lwRT0%3D&ovuser=0159e9d0-09a0-4edf-96ba-a3deea363c28%2CErin.Moulesong%40cbre.com"}]}, {"id": "recKbSFryZA0hmgUQ", "name": "Property Types / Industry Types CBRE review compared to Data Tower (US)", "owners": ["Subhabrat Padhi"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-31", "kristen": true, "benji": false, "execRel": true, "source": "", "note": "Analytics information pulled. Meeting scheduled 7/17 with Nick to cover next steps", "links": [{"label": "Data Tower defined Property & Industry types.xlsx", "url": "https://cbre.sharepoint.com/:x:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Information%20Architecture/Data%20Tower%20defined%20Property%20%26%20Industry%20types.xlsx?d=w05019acdfd5c4c1aafb8f28edc181a17&csf=1&web=1&e=d9SysG"}]}, {"id": "recL6sm0rV0erXROs", "name": "Findings Review - Integration Group 2 (Quick to Cover)", "owners": ["Lisa Anderson", "Ted Murena", "Subhabrat Padhi", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-21", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/15", "note": "", "links": [{"label": "Link", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/\\_layouts/15/Doc.aspx?sourcedoc=%7B214E5622-93FB-4854-815F-DE1254B4805D%7D&file=CBRE%20Tech%20Discovery%202.9%20Integration-Group-2-Findings-Assesment.docx&action=default&mobileredirect=true"}]}, {"id": "recLDnMxatkNEtQS2", "name": "Analysis if Ace is needed", "owners": ["Subhabrat Padhi", "David Garcia", "Meher Jaynavula"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "2026-08-07", "kristen": true, "benji": false, "execRel": false, "source": "Email from Kristen 7/13: Real Time Personalization for Humans and AI", "note": "", "links": []}, {"id": "recLdGQth0Ylb5SdN", "name": "Capture holiday time off", "owners": ["Erin Moulesong"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recN72SJEcZbCCxTI", "name": "SSO Assessment Findings Review", "owners": ["Subhabrat Padhi", "Lisa Anderson", "Ted Murena", "Parthi Thanikachalam", "Meher Jaynavula", "Kristen Swenson", "David Garcia"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-14", "kristen": false, "benji": false, "execRel": true, "source": "", "note": "", "links": [{"label": "CBRE Tech Discovery 2.4 SSO assessment findings.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/_layouts/15/Doc.aspx?sourcedoc=*7B43E7818A-CB32-4021-BC08-07627843D6E3*7D&file=CBRE*20Tech*20Discovery*202.4*20SSO*20assessment*20findings.docx&action=default&mobileredirect=true__;JSUlJSUlJSU!!GnpIGg!Zokrg3H7lISrTXx23I0MLSt7ZgTfFIznH_3b2m4m8SqjfirBMq5k_QWjU0a-0v3tDk6IvBwfRttXNaodKs5hQVVtxg$"}]}, {"id": "recOBrNCh85nOLBHO", "name": "Business case to be approved", "owners": ["Erin Moulesong", "Subhabrat Padhi"], "status": "In progress", "priority": "High", "risk": "Red", "due": "2026-08-03", "kristen": true, "benji": true, "execRel": true, "source": "", "note": "With Andrew Horn to approve; Additional material to be provided to Emma G, Brandon C discussing with Andrew H", "links": []}, {"id": "recOPEStcWpCjzRge", "name": "Sitecore & Vercel setup", "owners": ["Parthi Thanikachalam"], "status": "Done", "priority": "Medium", "risk": "Amber", "due": "", "kristen": false, "benji": false, "execRel": true, "source": "", "note": "Provisioning of Application & Web portal SSO is Complete; Cascading Auth access that enables sessions to different applications (like stream, Hub, marketplace etc) within Sitecore AI is in Progress. E", "links": []}, {"id": "recPnkYBjtx84X0M9", "name": "Define legal constraints on licensed stock images, expiry handling & DRM in Content Hub", "owners": ["Subhabrat Padhi", "Jill Luna", "Lisa Anderson"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Enterprise DAM Assessment 7/22", "note": "", "links": []}, {"id": "recPsRWGYoF1VWa4H", "name": "Findings Review - Content Inventory", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu", "Alexandra Cazangiu", "Laura Hahn", "Kristen Swenson", "Ted Murena", "Lisa Anderson"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-31", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/24", "note": "", "links": [{"label": "CBRE Tech Discovery 2.7 Content Inventory Assessment Findings.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.7*20Content*20Inventory*20Assessment*20Findings.docx?d=w6986135db278480a817c1ac3cfb6065d&csf=1&web=1&e=f6ESiL__;JSUlJSUlJSUlJSUl!!GnpIGg!Yexe_PdVVNd_MuqaPikhA8TRHuJmoAsE3frp41dNddfkGuypD3uQynGxj4VUiaPQZKvhRgHPjZa6vNMGYky9xvWzdA$"}]}, {"id": "recQ7Qh2pamZwTmh2", "name": "Understand video hosting requirements", "owners": ["Lisa Anderson", "Derek Correia", "Jesper Bunch", "Parthi Thanikachalam"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Enterprise DAM mtg - 7/22", "note": "", "links": []}, {"id": "recQdcRWWfXDc8s2B", "name": "CBRE IM Integrations - MirrorWeb", "owners": ["Ganesh Prabhu", "Jesper Bunch"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Ganesh email 7/22", "note": "Phani to connect with Ganesh", "links": [{"label": "Kurtosys", "url": "https://www.kurtosys.com/"}, {"label": "MirrorWeb", "url": "https://www.mirrorweb.com/"}, {"label": "global-real-estate-income-fund", "url": "https://www.cbreim.com/strategies-and-solutions/investment/listed-real-assets/global-real-estate-income-fund"}]}, {"id": "recRA2Gf5sFwu3Ll9", "name": "Findings Review - Integration Groups 5 & 6 - Final", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "Meher Jaynavula", "David Garcia", "Ted Murena", "Kathleen Garwood", "Lisa Anderson", "Laura Hahn", "Kristen Swenson"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-07", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/31", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 5 & 6 Findings - Final.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.9*20Integration*20Group*205*20*26*206*20Findings*20-*20Final.docx?d=wd4df8979ece64c0e8f4a0ac59e26e75d&csf=1&web=1&e=PY3rGv__;JSUlJSUlJSUlJSUlJSUlJSU!!GnpIGg!bGlC0lJYPhWEM-EsyXkU0VrNzKqagRxAJvcnJi5UOKz88chiHXfoeTeRbEFCkpm90VmWf4kyzl0Xg3j_dOBsJFKh8Q$"}]}, {"id": "recRTS2LERq3ig9PC", "name": "Map content recipes to consolidated templates and prepare stakeholder review materials", "owners": ["Lisa Anderson"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "UX batches meeting 7/6", "note": "", "links": []}, {"id": "recSF81v9CoGKNJaq", "name": "Findings Review - 2.5 Security Monitoring - Final", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Alexandra Cazangiu", "Kristen Swenson", "Ted Murena"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-31", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/24", "note": "", "links": [{"label": "CBRE Tech Discovery 2.5 Security Monitoring Assessment Findings - Fina", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.5*20Security*20Monitoring*20Assessment*20Findings*20-*20Final.docx?d=w2c45ab80dd65499d86fd0194b13165c5&csf=1&web=1&e=2ekAvz__;JSUlJSUlJSUlJSUlJSU!!GnpIGg!Yexe_PdVVNd_MuqaPikhA8TRHuJmoAsE3frp41dNddfkGuypD3uQynGxj4VUiaPQZKvhRgHPjZa6vNMGYkz5g50R5w$"}]}, {"id": "recSFNuJAELYvEth6", "name": "Standardize wireframe guidelines", "owners": ["Craig Stover", "Matt Siegel"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-17", "kristen": false, "benji": false, "execRel": false, "source": "UX weekly call 7/9", "note": "", "links": [{"label": "Project Arc Wireframe Guidelines.docx", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQBWSzBAW8_nRqwzenm_4K4rAVN58G1CdfvBiuDxJ_7KNJE?e=hMtpKw"}]}, {"id": "recSHKmHHFYJlNY3C", "name": "Findings Review - Integration Group 2 (Quick to Cover) - Final", "owners": ["Lisa Anderson", "Ted Murena", "Subhabrat Padhi", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-03", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/27", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 2- Quick to Cover Findings -", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.9*20Integration*20Group*202-*20Quick*20to*20Cover*20Findings*20-*20Final.docx?d=wac51125b0ca74e7582d4033505861dd7&csf=1&web=1&e=f6EZXA__;JSUlJSUlJSUlJSUlJSUlJSU!!GnpIGg!cP428bvAfgbH1lt4E-FF5Z9QWyv_-ICeGNIXPlUYh6YTK3o3iW65qYC9fCraAS_5j5LE7BS8DhKsorVjcC6HWc_PHw$"}]}, {"id": "recSHZDLE9G3hBlq7", "name": "Findings Review - 2.9 Group 2 - Property Listings - GPS", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Ganesh Prabhu", "Laura Hahn", "Kristen Swenson", "Ted Murena", "Lisa Anderson"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-03", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/27", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 1 - GPS Profile Findings.doc", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Findings/CBRE%20Tech%20Discovery%202.9%20Integration%20Group%201%20-%20GPS%20Profile%20Findings.docx?d=w4707ace6cf444fa381716e2dd611aeef&csf=1&web=1&e=P11o8p"}]}, {"id": "recT1SgeMCYNI5i3V", "name": "AI Search inclusion in Globant SOW", "owners": ["Kristen Swenson", "Alex Habib"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recU1MITZXMbGHvv6", "name": "Feedback R1 - US/Italy Project Plan", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu", "Alexandra Cazangiu", "Lisa Anderson", "Laura Hahn", "Kristen Swenson", "Ted Murena"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-27", "kristen": true, "benji": true, "execRel": true, "source": "Airtable", "note": "", "links": [{"label": "Link", "url": "https://airtable.com/appHL2Wp1iQb2Hjp4/tbliUuaqOZQ6v9LgE/viwL6Zwf80LMBcFWN?blocks=hide"}]}, {"id": "recUmklU9eoJXriim", "name": "Confirm Marketing Groups for Distribution", "owners": ["Erin Moulesong", "Kristen Swenson", "Laura Hahn", "Kathleen Garwood", "Lisa Anderson", "Eddie Wong"], "status": "Done", "priority": "High", "risk": "Amber", "due": "2026-07-17", "kristen": true, "benji": false, "execRel": false, "source": "Email thread responses are being collated in word document. 7/14", "note": "Need DM Leads to validate Groups and Tie up loose ends.", "links": []}, {"id": "recV58cXTMsKYQE1d", "name": "Feedback R1 - Services Pages Content Strategy and Wireframe", "owners": ["Lisa Anderson", "Kathleen Garwood", "Eddie Wong", "Laura Hahn", "Ganesh Prabhu"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-31", "kristen": true, "benji": false, "execRel": true, "source": "Services Page content strategy and wireframe 7/28", "note": "", "links": [{"label": "CBRE Service Pages.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/ProjectArc-Services/Shared%20Documents/Content%20Strategy/CBRE%20Service%20Pages.pptx?d=w07a5351e9a34405b9aa9c633bc468b27&csf=1&web=1&e=eNgEZ8"}, {"label": "Recording & Transcript -", "url": "https://cbre.sharepoint.com/:p:/t/ProjectArc-Services/IQCJoBn-YXU3ToeyZ-zj7OosAf3sIFd-EzmiJgiLqtG6RMI?e=fo7zP8"}, {"label": "Services Pages R1 7.28.26", "url": "https://cbre.sharepoint.com/:f:/t/projectarc/IgAUqz0AVJ59QY5Ep6l1ffdgAeuunxycA9SiAwYwIaoffIM?e=JKxsEJ"}]}, {"id": "recVDU9gdocgpFhgN", "name": "Understand what people information is available globally and is there a way to standardize it", "owners": ["Subhabrat Padhi", "David Ting"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "People data analysis on 7/24", "note": "", "links": [{"label": "CBRE People Pages.pptx", "url": "https://cbre.sharepoint.com/:p:/t/ProjectArc-Services/IQCJoBn-YXU3ToeyZ-zj7OosAf3sIFd-EzmiJgiLqtG6RMI?e=fo7zP8"}, {"label": "CBRE\\_Active\\_Directory\\_Schema.docx", "url": "https://cbre-my.sharepoint.com/:w:/p/subhabrat_padhi/IQBSk_ao9L7rQrAIM3bI_kg4AQy0k9199bi24UepielYd3A?e=6KFiDP"}]}, {"id": "recVHk46iDWfb8Yy7", "name": "Determine which Market Canvas data elements can be displayed on the website", "owners": ["Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Market Canvas meeting 7/20", "note": "", "links": []}, {"id": "recVNQK9G3pQ3Wn0k", "name": "Update governance documentation", "owners": ["Aaron Clanton", "Erin Moulesong"], "status": "No longer needed", "priority": "Low", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recVQE6a7nOVwMVgI", "name": "Define URL structure", "owners": ["Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "UX batches meeting 7/6", "note": "", "links": []}, {"id": "recVQxFk9MMHTqOBn", "name": "Google Analytics architecture consolidation", "owners": ["Alexandra Cazangiu"], "status": "Blocked", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Blocked by domain strategy decision. Alex needs decision asap to proceed. Globant recommendation lands 7/14 (Domain Strategy v2); Last updated 7/13.", "note": "", "links": []}, {"id": "recXnxRhL6cqU3Uzz", "name": "List of listing tools other countries are using (SaaS name, homegrown, etc)", "owners": ["Steve Yi", "Kathleen Garwood", "Eddie Wong"], "status": "In progress", "priority": "Medium", "risk": "", "due": "2026-11-30", "kristen": false, "benji": false, "execRel": true, "source": "Property Listings workshop 7/1", "note": "Call scheduled with Steve Yi 7/30", "links": []}, {"id": "recY1sFTdBMSO9gq2", "name": "Findings Review - Integration Groups 4 (Simple Embeds)", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "Meher Jaynavula", "David Garcia", "Ted Murena", "Kathleen Garwood", "Lisa Anderson", "Laura Hahn", "Kristen Swenson", "Eddie Wong"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-27", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/21", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 4 Findings.docx", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQCoio7YQJJgTpMc67rulfr_AR8lB7pUxFZlH66KJWL0DdE?e=FWwzMh"}]}, {"id": "recYffKPvsev6Or5X", "name": "Share the Marketing Digest documents and current upload templates", "owners": ["Ted Murena"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "2026-07-31", "kristen": false, "benji": false, "execRel": false, "source": "Content Inventory workshop 7/20", "note": "", "links": []}, {"id": "recYhFvx60S2kpvaR", "name": "VRA on Scrunch", "owners": ["Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Scrunch call 7/17", "note": "Padhi to coordinate with Jim Brown <James.Brown@sitecore.com>", "links": []}, {"id": "recZFizpFIoeDf7jI", "name": "R1 Review - Campaign and Base Pages R1 - Talent/Careers", "owners": ["Kathleen Garwood", "Eddie Wong", "Kristen Swenson", "Laura Hahn", "Ganesh Prabhu", "Alexandra Cazangiu", "Ted Murena", "Subhabrat Padhi"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-06", "kristen": true, "benji": false, "execRel": true, "source": "Base & Campaign Page - Talent/Careers R1 on 8/4", "note": "", "links": []}, {"id": "recZJaRlTwfa8l1dL", "name": "Services Structure template needed", "owners": ["Andrea Sanchez"], "status": "Done", "priority": "Medium", "risk": "Amber", "due": "", "kristen": true, "benji": true, "execRel": true, "source": "", "note": "Andrea to provide Excel template of Services by country to facilitate Nick's business/geo conversations. Target 6/29", "links": []}, {"id": "recZfYbQpcDKyUFhE", "name": "Understand Vercel and Cloudflare setup", "owners": ["Derek Correia", "Jesper Bunch", "Parthi Thanikachalam"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Integration 5/6 call on 7/15", "note": "", "links": []}, {"id": "reca0gTdQEymEikN7", "name": "Design Strategy and Concepts Direction", "owners": ["Laura Hahn", "Kristen Swenson", "Matt Siegel"], "status": "In progress", "priority": "High", "risk": "Amber", "due": "2026-08-12", "kristen": true, "benji": true, "execRel": true, "source": "Design Concepts review with Benji 7/27", "note": "Globant initial designs do not \"push far enough\" the visual design concepts based on Benji's feedback. Sarang and Globant team to re-group to develop bolder, more disruptive R2.", "links": []}, {"id": "recaXD9mDhvuP8kFX", "name": "Questionnaire - SEO & Analytics", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu", "Alexandra Cazangiu", "Kristen Swenson", "Ted Murena", "Lisa Anderson", "Phani Abburi"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-30", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/24", "note": "", "links": [{"label": "CBRE Tech Discovery 2.6 SEO and Analytics Assessment Questionnaire.doc", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Questionnaires/2.6-SEO-Analytics-Assessment-*26-Requirements-Gathering/CBRE*20Tech*20Discovery*202.6*20SEO*20and*20Analytics*20Assessment*20Questionnaire.docx?d=w3642105d3ec1405095266a29fae98d47&csf=1&web=1&e=oi1wJy__;JSUlJSUlJSUlJSUlJSU!!GnpIGg!Yexe_PdVVNd_MuqaPikhA8TRHuJmoAsE3frp41dNddfkGuypD3uQynGxj4VUiaPQZKvhRgHPjZa6vNMGYkxWxPNKYg$"}]}, {"id": "recasCSb28DjLHS4d", "name": "Domain Strategy", "owners": ["Kristen Swenson", "Kathleen Garwood", "Ganesh Prabhu", "Alexandra Cazangiu", "Eddie Wong", "Ted Murena", "Laura Hahn", "Subhabrat Padhi", "Parthi Thanikachalam", "Lisa Anderson"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-07-31", "kristen": true, "benji": true, "execRel": true, "source": "Domain Strategy v2 mtg 7/14", "note": "Pending D&T and Globant feedback due 7/29", "links": [{"label": "Project Arc Domain Consolidation Executive Doc-July 2026.docx", "url": "https://cbre-my.sharepoint.com/:w:/p/kristen_swenson/IQA0giNVUQQWTaxYCSAw-p_uAa33FN5zgJ8QFHtsv48JcmQ"}, {"label": "CBRE Domain Decision Matrix with Scoring Version.xlsx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:x:/r/teams/projectarc/Shared*20Documents/General/Rollout*20Prioritisation*20*26*20Domain*20Strategy/CBRE*20Domain*20Decision*20Matrix*20with*20Scoring*20Version.xlsx?d=w1732e99467e741c1ba43a76e65083bac&csf=1&web=1&e=2kRjNf__;JSUlJSUlJSUlJSUl!!GnpIGg!fN-j6nA9Ey0bR6aRuJsdqW0UiDZfeE-XwIi2dLkphSvjTKKcLNy_rIjoV4qn9zlN5mDeZNt1LieFrSxO8pCgZw73YAXYHmk$"}]}, {"id": "recbW6qI02a4oCvkZ", "name": "Findings Review - Integration Groups 5 & 6", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "Meher Jaynavula", "David Garcia", "Ted Murena", "Kathleen Garwood", "Lisa Anderson", "Laura Hahn", "Kristen Swenson"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-27", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/19", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 5 & 6 Findings.docx", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Findings/CBRE%20Tech%20Discovery%202.9%20Integration%20Group%205%20%26%206%20Findings.docx?d=w48d02609825748ca9a280a5ac25f5e0a&csf=1&web=1&e=dxdXZo"}]}, {"id": "recbbtJkN6cIaykNe", "name": "Align with Research and Globant on publishing figures reports", "owners": ["Subhabrat Padhi", "Lisa Anderson", "Max Simchowitz"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Research Transformation call with Max 7/10; email 7/9", "note": "", "links": []}, {"id": "recd5ReAcZpLQmMo7", "name": "â€‹Scrunch contract", "owners": ["Ganesh Prabhu"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": true, "benji": false, "execRel": true, "source": "", "note": "Call setup for 7/17", "links": []}, {"id": "recdDG7n1BAwT42RS", "name": "Findings Review - 2.1 Backend Assessment - Final", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu", "Alexandra Cazangiu", "Lisa Anderson", "Laura Hahn", "Kristen Swenson", "Ted Murena"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-27", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/19", "note": "", "links": [{"label": "CBRE Tech Discovery 2.1 Backend Assessment Findings - Final.docx", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Findings/CBRE%20Tech%20Discovery%202.1%20Backend%20Assessment%20Findings%20-%20Final.docx?d=wcab6f005b1d24add8096217370afc9d4&csf=1&web=1&e=ZcFRG4"}]}, {"id": "recdz7kjGZlkkeO2C", "name": "Feedback R1 - Person Page Content Strategy and Wireframe", "owners": ["Lisa Anderson", "Kathleen Garwood", "Eddie Wong", "Laura Hahn", "Ganesh Prabhu"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-28", "kristen": true, "benji": false, "execRel": true, "source": "Person Page content strategy and wireframe 7/23", "note": "", "links": [{"label": "CBRE People Pages.pptx", "url": "https://cbre.sharepoint.com/:p:/t/ProjectArc-Services/IQCJoBn-YXU3ToeyZ-zj7OosAf3sIFd-EzmiJgiLqtG6RMI?e=fo7zP8"}, {"label": "Person Page R1 7.23.26", "url": "https://cbre.sharepoint.com/:f:/t/projectarc/IgBqhhlPdYNHSLQPR-8KOsa6AQT_UmdqWlbny9kxqxjcG68?e=mMjulq"}]}, {"id": "recfY5wVMt3syaAfJ", "name": "Complete workshop prioritization and complexity assessment across all workstreams â€‹", "owners": ["Erin Moulesong", "Parthi Thanikachalam"], "status": "Done", "priority": "High", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recfgbvluflDvM2LK", "name": "Define search behavior", "owners": ["Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "UX batches meeting 7/6", "note": "", "links": []}, {"id": "recgFSGuIq6Ftdt03", "name": "Findings Review - 2.9 Group 2 - Property Listings - Final", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu", "Alexandra Cazangiu", "Laura Hahn", "Kristen Swenson", "Ted Murena", "Steve Yi", "Jolanda Carroll"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-07-31", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/24", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 2 Property Listings Findings", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.9*20Integration*20Group*202*20Property*20Listings*20Findings*20-*20Final.docx?d=w255677b33fdb426e9b0023a7bdffe123&csf=1&web=1&e=o6Z0zw__;JSUlJSUlJSUlJSUlJSUlJQ!!GnpIGg!Yexe_PdVVNd_MuqaPikhA8TRHuJmoAsE3frp41dNddfkGuypD3uQynGxj4VUiaPQZKvhRgHPjZa6vNMGYkyZC539_A$"}]}, {"id": "rechAWS0w33RJIVQ7", "name": "Findings Review - 2.4 SSO Assessment - Final", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Lisa Anderson", "Kristen Swenson", "Ted Murena"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-31", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/24", "note": "", "links": [{"label": "CBRE Tech Discovery 2.4 SSO Assessment Findings - Final.docx", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Findings/CBRE%20Tech%20Discovery%202.4%20SSO%20Assessment%20Findings%20-%20Final.docx?d=w9b7554e2f84043faa5aed95fb5cdec62&csf=1&web=1&e=kBganu"}]}, {"id": "rechRn0cEtxzi2l6H", "name": "Hire Experience Strategist", "owners": ["Laura Hahn"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "rechiOgwvh6vbEcY4", "name": "Career / job feed working with Debbie and people team + people team D&T", "owners": ["Subhabrat Padhi", "Laura Hahn"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "2026-07-22", "kristen": false, "benji": false, "execRel": false, "source": "Kristen IM", "note": "", "links": []}, {"id": "recjRG9bRkd02Vaib", "name": "Define authoring guardrails", "owners": ["Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "UX batches meeting 7/6", "note": "", "links": []}, {"id": "recjcSD3WauoTdPgc", "name": "Findings Review - Integration Group 3 (Chartis)", "owners": ["Kathleen Garwood", "Ganesh Prabhu", "Alexandra Cazangiu", "Ted Murena", "Kristen Swenson", "Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-21", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/15", "note": "", "links": [{"label": "Link", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQDN1gFI99keRpfdiG6zFnejAcGy\\_GzqzVDtQSBQZoyuB-4?email=Allie.DeBaere%40cbre.com&e=micVKl&isSPOFile=1&ovuser=0159e9d0-09a0-4edf-96ba-a3deea363c28%2CAndrew.Nadel%40cbre.com&wdExp=TEAMS-TREATMENT&web=1&TeamsCID=23ccb5b3-afef-4c0f-8db5-4eaea190dede&clickparams=eyJBcHBOYW1lIjoiVGVhbXMtRGVza3RvcCIsIkFwcFZlcnNpb24iOiI1MC8yNjA1MjkwNjExOCJ9&linkOpenTime=1784315188602"}]}, {"id": "recklGUTW8mTpAWMa", "name": "Findings Review - 2.2 Localization Assessment - Final", "owners": ["Subhabrat Padhi", "Parthi Thanikachalam", "David Garcia", "Meher Jaynavula", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu", "Alexandra Cazangiu", "Lisa Anderson", "Laura Hahn", "Kristen Swenson", "Ted Murena"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-27", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/19", "note": "", "links": [{"label": "CBRE Tech Discovery 2.2 Localization Assessment Findings - Final.docx", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Findings/CBRE%20Tech%20Discovery%202.2%20Localization%20Assessment%20Findings%20-%20Final.docx?web=1"}]}, {"id": "recl5dHzFUWwePGtD", "name": "Hire UX Designer", "owners": ["Laura Hahn"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recnNAAFDvgOmQo6O", "name": "Research Transformation Update and Content Gating Findings", "owners": ["John George", "Kristen Swenson"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-14", "kristen": true, "benji": false, "execRel": true, "source": "Arc Monthly Steerco 7/6", "note": "Call scheduled with Lisa/Globant/Max on 7/14", "links": []}, {"id": "recnehoUbPKvBz2v1", "name": "Define template governance requirements", "owners": ["Subhabrat Padhi"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "UX batches meeting 7/6", "note": "", "links": []}, {"id": "recniFPv3LHsgAcOj", "name": "Heatmap data for 17 countries", "owners": ["Alexandra Cazangiu", "Craig Stover"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-17", "kristen": false, "benji": false, "execRel": false, "source": "email 7/9 from Cat", "note": "List of countries: 0. .com 1. Canada 2. Brazil 3. Mexico 4. United Kingdom 5. France 6. Spain 7. Germany 8. Netherlands 9. Italy 10. Australia 11. India 12. Singapore 13. Hong Kong 14. Japan 15. UAE 1", "links": [{"label": "AllItems.aspx?id=%2Fteams%2Fprojectarc%2FShared%20Documents%", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/Forms/AllItems.aspx?id=%2Fteams%2Fprojectarc%2FShared%20Documents%2FGeneral%2FOverall%20Site%20Architecture%20Plan%2FHeatmaps%20and%20Analytics%2FMain%20Nav%20Heatmaps%20260706&viewid=35a1ec64%2Def02%2D4e03%2Dbc1a%2D2fc346efc4c6&csf=1&CID=dd7316a8%2Da91b%2D4e58%2D8d48%2D80ad5bd0982f&FolderCTID=0x012000514F6252E5E29E449442761FD8E000B5&web=1"}]}, {"id": "recnmFnea3XunNhLd", "name": "Final Review - Interlinking", "owners": ["Lisa Anderson", "Kathleen Garwood", "Eddie Wong", "Kristen Swenson", "Laura Hahn", "Ganesh Prabhu", "Alexandra Cazangiu", "Ted Murena", "Subhabrat Padhi"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-07", "kristen": true, "benji": false, "execRel": true, "source": "Email from Cat 8/3", "note": "", "links": [{"label": "CBRE Interlinking Strategy V3\\_FInal.pptx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:p:/r/teams/ProjectArc-Services/Shared*20Documents/Interlinking*20Strategy/CBRE*20Interlinking*20Strategy*20V3_FInal.pptx?d=w31b47f702310451a80e16b4d8f97c980&csf=1&web=1&e=XmzEwj__;JSUlJSU!!GnpIGg!aeB2E-TvqUgtgOwZ2G13JVA6Bo3RI-DZ889mJwEJhL-jyzpQUQ2vgk10NNuJqoUkQk3EmWqvk9oYFVJyZZ1aLWvVJ60tEc0$"}]}, {"id": "recoPSRFyfzpQwQLp", "name": "Property listings findings Review", "owners": ["Subhabrat Padhi", "Alexandra Cazangiu", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-14", "kristen": false, "benji": false, "execRel": true, "source": "", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Property Listings Findings.docx", "url": "https://urldefense.com/v3/__https:/cbre.sharepoint.com/:w:/r/teams/projectarc/Shared*20Documents/General/Tech*20Implementation/Technical*20Requirements/Tech*20Discovery*20Findings/CBRE*20Tech*20Discovery*202.9*20Property*20Listings*20Findings.docx?d=w11a72758331b4e5582640afb2ebb5b0e&csf=1&web=1&e=S9W5up__;JSUlJSUlJSUlJSU!!GnpIGg!Zokrg3H7lISrTXx23I0MLSt7ZgTfFIznH_3b2m4m8SqjfirBMq5k_QWjU0a-0v3tDk6IvBwfRttXNaodKs6ZunmUWw$"}]}, {"id": "recoX6PkAc2Csxnh2", "name": "Security Monitoring Assessment Findings Review", "owners": ["Subhabrat Padhi", "Alexandra Cazangiu", "Ted Murena"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-14", "kristen": false, "benji": false, "execRel": true, "source": "", "note": "", "links": [{"label": "CBRE Tech Discovery 2.5 Security Monitoring Assessment Findings.docx", "url": "https://cbre.sharepoint.com/:w:/t/projectarc/IQBF6DWXYaSpR5uI30gGvXyqAeoIrsPZXKyMLmDhMldsli8?e=DO8YPa"}]}, {"id": "recoliXqnLg6UhQMb", "name": "Benji view of meetings and she will need to see who has been part of prior convos", "owners": ["Andrew Nadel"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "2026-07-29", "kristen": true, "benji": true, "execRel": false, "source": "Core leadership meeting 7/23", "note": "", "links": []}, {"id": "recow5TDKhmA9QNXs", "name": "Findings Review - Integration Group 3 (Chartis) - Final", "owners": ["Kathleen Garwood", "Ganesh Prabhu", "Alexandra Cazangiu", "Ted Murena", "Kristen Swenson", "Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam"], "status": "In progress", "priority": "High", "risk": "", "due": "2026-08-03", "kristen": true, "benji": false, "execRel": true, "source": "Email from Jesper 7/27", "note": "", "links": [{"label": "CBRE Tech Discovery 2.9 Integration Group 3 - Chartis Findings - Final", "url": "https://cbre.sharepoint.com/:w:/r/teams/projectarc/Shared%20Documents/General/Tech%20Implementation/Technical%20Requirements/Tech%20Discovery%20Findings/CBRE%20Tech%20Discovery%202.9%20Integration%20Group%203%20-%20Chartis%20Findings%20-%20Final.docx?d=wa4c90d20f16d43809b0710d4788dfb03&csf=1&web=1&e=oON2wA"}]}, {"id": "recpU3gUmimqgf4g9", "name": "D&T session on how CDO work will impact future of Data Entry for Listings", "owners": ["Meher Jaynavula"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recptbwapIvD0MbJi", "name": "CBRE IM Integrations - Kurtosys", "owners": ["Ganesh Prabhu", "Jesper Bunch"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Ganesh email 7/22", "note": "Video sent to Globant team; pending feedback from Jesper", "links": [{"label": "Kurtosys", "url": "https://www.kurtosys.com/"}, {"label": "MirrorWeb", "url": "https://www.mirrorweb.com/"}, {"label": "global-real-estate-income-fund", "url": "https://www.cbreim.com/strategies-and-solutions/investment/listed-real-assets/global-real-estate-income-fund"}]}, {"id": "recq7STEYhOe28IBg", "name": "Identify Security & Gates Compliance Milestones project plan", "owners": ["Kirdric Hill"], "status": "Done", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Security Monitoring Workshop 7/1", "note": "", "links": []}, {"id": "recqcHvsK0DVU2n2u", "name": "Key field analysis by Section on all GL sites, including if data exists in those fields in source system/Market Canvas", "owners": ["Subhabrat Padhi"], "status": "Done", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Property Listings workshop 7/1", "note": "", "links": []}, {"id": "recr55e8zJlil2XdK", "name": "IA Survey to Country and Segment leaders", "owners": ["Laura Hahn", "Kathleen Garwood", "Eddie Wong", "Lisa Anderson"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-17", "kristen": false, "benji": false, "execRel": true, "source": "email 7/6 from Cat", "note": "", "links": [{"label": "Global Website Information Architecture (IA) & Navigation â€“ Fill out f", "url": "https://urldefense.com/v3/__https:/forms.office.com/Pages/ResponsePage.aspx?id=0OlZAaAJ306WuqPe6jY8KHtdutxmSUNFiLf4oqSYjHFUQ0wwVDFTV0lLQUFHSkNNM1lQWkNGWDQzRC4u__;!!GnpIGg!YrRK2eEb8mIf2lyElqdH7M-p7aETkU3pLka_v_bfXl9mwPs76HIWk_nf1OqL4w9rO0xrxd-9EVI1uHCGO8IPrEuS93kS-PEt$"}]}, {"id": "recrDI27obeYxzASG", "name": "Distribute technical workshop matrix, stakeholder mapping, and workshop schedule for reviewâ€‹", "owners": [], "status": "Done", "priority": "", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recri7KphlAPcSNqh", "name": "Socialization Strategy defined", "owners": ["Kristen Swenson", "Laura Hahn"], "status": "Done", "priority": "High", "risk": "Green", "due": "2026-07-29", "kristen": true, "benji": true, "execRel": true, "source": "", "note": "98% complete and will review planned meeting attendees next week with Benji's directs. First business leader meetings to be held by 7/27 with First Council meetings to be held by Aug 17.", "links": [{"label": "Project Arc - Socialization Approach.pptx", "url": "https://cbre.sharepoint.com/:p:/r/teams/projectarc/Shared%20Documents/General/Governance/Project%20Arc%20-%20Socialization%20Approach.pptx?d=w0031f5ccd98147bb9d1690cd0db06c34&csf=1&web=1&e=8iDngK"}]}, {"id": "recs2xNxCRTGN9b3C", "name": "Finalize Teams, SharePoint, Airtable, and ADO document storage structure â€” â€‹", "owners": ["Erin Moulesong", "Parthi Thanikachalam"], "status": "Done", "priority": "", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recs5vQ0KmdYFcU7n", "name": "Share the internal DAM study from about three years ago mapping use cases, asset types, and connection points", "owners": ["Ted Murena"], "status": "In progress", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Enterprise DAM mtg - 7/22", "note": "", "links": []}, {"id": "recswDMnQySFJh0pC", "name": "AI List of GCSO security controls", "owners": ["Kirdric Hill"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Security Monitoring Workshop 7/1", "note": "", "links": []}, {"id": "rectZCGkk91dmByF1", "name": "Client/tester recruiting request for Advisor Councils", "owners": ["Craig Stover"], "status": "Not Started", "priority": "Medium", "risk": "", "due": "2026-07-31", "kristen": false, "benji": false, "execRel": false, "source": "User Research for Project Arc 7/10", "note": "", "links": []}, {"id": "recu5H7qWub170JAS", "name": "Chartis Analytics support for Project Arc", "owners": ["Alexandra Cazangiu"], "status": "In progress", "priority": "Medium", "risk": "", "due": "2026-07-17", "kristen": false, "benji": false, "execRel": false, "source": "Email from Alex on 7/8 re: Strategy work", "note": "Need to determine scope of SOW for Analytics work for Chartis", "links": []}, {"id": "recuJGpxAxrEd16wi", "name": "Access to CBRE tools for Strategy team", "owners": ["Kirdric Hill", "Alexandra Cazangiu"], "status": "Done", "priority": "Medium", "risk": "", "due": "2026-07-17", "kristen": false, "benji": false, "execRel": false, "source": "Cat IM", "note": "GA4 (Alex), PowerBI dashboards (Alex), Sprinklr, Coveo, Mouseflow, Segment, Snowflake + Interlinking report in GA4 (Alex) Swan - Vilichay, Swan @ CBRE Contractor Swan.Vilichay@cbre.com Andrea - Sanche", "links": []}, {"id": "recuQVLRUx4eOOclc", "name": "Figma access for Globant team", "owners": ["Cathrine Jermiin"], "status": "Done", "priority": "Medium", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "Daily tech stand-up", "note": "", "links": []}, {"id": "recuRwI2sDCIa6d7a", "name": "Scrunch update for Aug Steerco", "owners": ["Erin Moulesong", "Irina Rock-Gilbertson"], "status": "No longer needed", "priority": "Low", "risk": "", "due": "2026-07-27", "kristen": false, "benji": false, "execRel": false, "source": "Arc Monthly Steerco 7/6", "note": "", "links": []}, {"id": "recwFVBYDea1lsQ0j", "name": "SitecoreAI early access to DM team", "owners": ["Casey Pennington", "Subhabrat Padhi"], "status": "Done", "priority": "High", "risk": "", "due": "2026-07-15", "kristen": false, "benji": false, "execRel": true, "source": "", "note": "", "links": []}, {"id": "recxafesAHS8TqGUu", "name": "Update workshop descriptions to clearly separate Technical Discovery from Requirements Gatheringâ€‹", "owners": [], "status": "Done", "priority": "", "risk": "", "due": "", "kristen": false, "benji": false, "execRel": false, "source": "", "note": "", "links": []}, {"id": "recxvCJ2O6qbpEuqu", "name": "Globantâ€™s plan still missing details and critical upcoming dates have significant missing information (7/31 US Implementation Plan sign off; 8/31 International Wave Plan sign-off)", "owners": ["Erin Moulesong", "Denis Farias"], "status": "In progress", "priority": "High", "risk": "Amber", "due": "2026-08-07", "kristen": true, "benji": true, "execRel": true, "source": "", "note": "Globant incorporating feedback; focus for week of 8/3 will be aligning tech work items", "links": [{"label": "Arc Project Plan R1 feedback.docx", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/General/Governance/Project%20Planning/Arc%20Project%20Plan%20R1%20feedback.docx?web=1"}]}, {"id": "recylSaTnqPImgw21", "name": "Socialization - Initial Business review meetings scheduled", "owners": ["Kristen Swenson", "Lisa Anderson", "Laura Hahn", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu"], "status": "In progress", "priority": "High", "risk": "", "due": "", "kristen": true, "benji": true, "execRel": true, "source": "", "note": "", "links": []}];
const TEAM_ORDER = ["CBRE Marketing", "CBRE DM", "CBRE D&T", "CBRE Research", "Corp Comms", "Globant", "Chartis", "Sitecore"];
function teamsFor(m) {
  const t = new Set();
  [...peopleFor(m)].forEach(p => { const tm = PERSON_TEAM[p]; if (tm) t.add(tm); });
  return TEAM_ORDER.filter(x => t.has(x));
}
function meetingSpan(m) {
  const end = displayDate(m);
  const start = m.startMulti || "";
  return (start && end && start !== end) ? { start, end } : null;
}
// Feedback-owed rule: a meeting with a feedback doc creates an obligation for
// (a) every CBRE DM member on the invite (DM always reviews), and
// (b) anyone else on the invite when the purpose/agenda explicitly calls for feedback.
function feedbackMentioned(m) {
  return ((m.purpose || "") + " " + (m.agenda || "") + " " + m.title).toLowerCase().includes("feedback");
}

const DIGEST = {"weekOf": "2026-08-03", "generated": "2026-08-05", "meetings": [{"title": "Campaign & Base Pages content strategy and wireframes R1", "date": "2026-08-03", "summary": "The Project Arc team held the first wireframe review (R1) for the Base Page and Campaign Page templates, presented by Luis Bustamante with facilitation from Catherine Jermiin. Base pages were positioned as flexible, single-focus templates for use cases like press releases, career detail, and blog pages, with mandatory hero elements (title/subtitle) and optional components (images, CTAs, data/text visualizations) to avoid forcing low-value generic content. Campaign pages were presented as highly narrative, customizable landing templates for high-stakes stories, with feedback that they must flex to support video, multi-article series, and better-placed conversion forms. Stakeholders raised significant concerns about governance (who can use which template where), press release standardization versus base-page flexibility, and the difficulty of evaluating templates without a bird's-eye view of the full template system. Feedback is due to Global by August 6, with an R2 review next week followed by final sign-off and the visual design phase.", "decisions": ["Base pages and campaign pages will be separate templates: base pages for single-focus, text-backed detail content (press release, career detail, blog) and campaign pages for narrative, high-customization campaign content", "Hero images, CTAs, and other non-essential elements will be optional rather than mandatory to prevent authors adding generic, low-value images", "Optional body components (text/data visualizations, KPI stats) can be reordered or omitted, and press release migration will carry current components one-to-one", "Content-authoring workflows and governance rules (e.g., centrally managed media contact) can be established with the new templates, with template/governance mechanisms controlling who can build what where", "Sticky CTA behavior and form placement/anchoring will be addressed in the visual design and functionality phase rather than in wireframes", "R1 feedback is due August 6, followed by an R2 review next week, final sign-off, and then the visual design stage", "Separate sessions will cover talent/careers pages (tomorrow) and the insights/research template (later in the week); the weekly take and similar franchises will be handled via insights and research content recipes"], "actions": [{"item": "Provide R1 wireframe feedback via comments in the deck by August 6", "owner": "All stakeholders"}, {"item": "Consolidate US feedback and submit to Global by Thursday, then schedule/run the R2 (version two) review next week", "owner": "Erin Moulesong"}, {"item": "Follow up offline on mapping every base-page use case to required flexibility and governance (e.g., media contact requirements)", "owner": "Catherine Jermiin / Lisa Anderson"}, {"item": "Reconsider press release templatization/standardization based on feedback that press releases should be uniform, not flexible", "owner": "Matthew Siegel / UX team"}, {"item": "Share additional campaign page links (video components, multi-article campaigns) with the Global team", "owner": "Grace Cary"}, {"item": "Review optional/body components against the current zone-based component system, using the Thursday weekly touchpoint", "owner": "Craig Stover / Catherine Jermiin"}, {"item": "Assess whether Capital Markets Conversations franchise fits the campaign template or insights and research recipes, and determine where it will live", "owner": "Andrea Sanchez / Kurt Lindsey / Alissa Van Der Westhuizen"}, {"item": "Categorize and track all governance-related comments for later tracks even if not addressed in R2", "owner": "Andrea Sanchez"}], "noTranscript": false, "transcriptUrl": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/General/Meeting%20Recordings_Transcripts/Page%20Template%20Wireframes%20and%20Designs/Base%20%26%20Campaign%20Page%208.3.26/Base%20Pages%20content%20strategy%20and%20wireframes%20R1.docx?web=1", "mid": "recoyyfAhMBv3oV33"}, {"title": "DM & D&T Internal Weekly 8.3.26", "date": "2026-08-03", "summary": "The DM and D&T teams reviewed Project Arc tech workstreams. The Sitecore Client IQ integration pilot (one form, five pages) is in QA with a target launch the first week of September, while phase two remains blocked on page mapping, marketing group identification, and post-MQL routing; international consistency with UK/Italy/Japan lead flows was flagged. Updates covered the design system draft (agreed with UX and Enterprise Architecture), a 4-6 month bot strategy/web traffic governance effort evaluating Vercel vs Akamai/Cloudflare, weekly architecture syncs with Global using a shared Mural board, and Scrunch trial account discussions. The interlinking final document is expected from Global with sign-off due Friday, and domain strategy consolidation likely slips past Global's Friday deadline due to leadership socialization and August holidays. The team also discussed people data source mapping, a gating/research follow-up call with Andrea before Thursday's wireframe presentation, and preparing the Airtable-based US/Italy launch plan for the Benji-ready R2 version.", "decisions": ["Bot strategy discussions will continue in the existing Alex/Ted-led weekly track rather than creating a separate track, with David, Ganesh (SEO consulting), and an MOM to Erin added", "CIQ pilot target launch is first week of September, aligned to the CIQ monthly release", "Not planning further engagement with Notch/Ace by Notch since its capabilities overlap with Sitecore AI", "Hold a follow-up gating/research call (~45 min) with Andrea before Thursday's wireframe presentation, with Craig walking through summary findings", "Interlinking final doc will be delivered by email with a five-day review window (sign-off by Friday), no presentation", "One master Airtable plan will hold common launch steps for all countries, with separate per-country Airtables for page mapping"], "actions": [{"item": "Confirm segment mapping completion for CIQ pilot this week", "owner": "Priscilla"}, {"item": "Hold follow-up call on mapping additional pages and marketing groups for CIQ phase two", "owner": "Subhabrat Padhi"}, {"item": "Send final publish to Global on form consolidation and follow up on backward compatibility", "owner": "Craig Stover / Ted Murena"}, {"item": "Have Rick document Italy web-to-lead work and Eddie cover Japan for alignment on non-US lead flows", "owner": "Ted Murena"}, {"item": "Get VRA submission status update from Connor when he returns", "owner": "Subhabrat Padhi"}, {"item": "Follow up offline on the three outstanding items (Sitecore personalization, Coveo vs Sitecore search, Scrunch) and personalization call timing", "owner": "Ted Murena"}, {"item": "Review Coveo vs Sitecore search materials", "owner": "Craig Stover"}, {"item": "Continue Scrunch trial account setup", "owner": "Ganesh Prabhu"}, {"item": "Connect with Kristin and Sarah to agree on domain consolidation approach", "owner": "Kathleen Garwood"}, {"item": "Check with Dennis/Global on the drop-dead date for the domain strategy determination", "owner": "Erin Moulesong"}, {"item": "Confirm interlinking final document arrives today and manage Friday sign-off", "owner": "Erin Moulesong"}, {"item": "Send interlinking final readout to Lindsey Wester", "owner": "Lisa Anderson"}, {"item": "Coordinate and schedule gating/research follow-up with Andrea before Thursday", "owner": "Laura Hahn / Lisa Anderson / Erin Moulesong"}, {"item": "Walk Global through gating workshop synthesis findings", "owner": "Craig Stover"}, {"item": "Meet to identify Italy-specific lines in Airtable and prepare an exportable Italy view for review", "owner": "Erin Moulesong / Kathleen Garwood"}, {"item": "Initiate review of Italy Airtable items with the Italy stakeholder before her holiday, including Erin", "owner": "Kathleen Garwood"}, {"item": "Finish reviewing remaining five documents today", "owner": "Ted Murena"}], "noTranscript": false, "transcriptUrl": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/General/Meeting%20Recordings_Transcripts/CBRE%20D%26T%20and%20DM%20weekly%20call/DM%20%26%20D%26T%20Internal%208.3.26/Project%20Arc%20-%20DM%20%26%20D%26T%20Internal%20Sync%208.3.26.docx?web=1", "mid": "recZeDf0DoAR3DSj1"}, {"title": "Governance Next Steps Part 2", "date": "2026-08-03", "summary": "The team reviewed the governance content framework rollout plan in Airtable, walking through the sequence: present the framework to Lisa, Kathleen, Eddie, Laura and team on August 11, then to Kristin for validation, then to Benji and core leadership, followed by role socialization, refinement, and training/enablement. Several plan line items had date errors and overlapping scope; training was clarified as split between developing materials (line 200) and delivering actual training closer to go-live in Q1-Q2 2027, avoiding the December holidays. The group agreed the Market IQ walkthrough is unnecessary for Project Arc and removed it from the plan. There was discussion about sequencing the Kristin review relative to the August 12 Sitecore CMP demo and workshops, with consensus to get in front of Kristin sooner rather than later rather than waiting on dependencies. The content authoring experience track (demo, future-state workshop, prep materials, August 19 on-site, final presentation) was recapped, along with the content authoring support stream covering workflows and quality gates.", "decisions": ["The Market IQ walkthrough/demo is not needed and will be removed from the plan", "Actual training and enablement will be scheduled closer to go-live (Q1-Q2 2027), not in August, and no training will occur during the two holiday weeks over Christmas/New Year's", "Line 201 (training and enablement) will be left open-ended/tentative (extending into January) until the governance plan training scope is defined", "Present the governance content framework to Kristin before the Sitecore demo; get in front of Kristin sooner rather than later with no hard dependency on the demo", "Lisa will be added to today's stand-up with Kristin to discuss the governance framework early", "The unidentified/unclear line item in the content authoring stream will likely be deleted", "Sitecore CMP capabilities demo confirmed for August 12; governance content framework presentation to leadership on August 11"], "actions": [{"item": "Add pre-read/preparation details for workshops (who presents, who decides, what attendees must bring) and define per-line-item success outcomes in the agenda, per Meher's feedback", "owner": "Carlos Vargas"}, {"item": "Provide updated cost estimate so a total cost can be assembled for Kristin", "owner": "Erin (CBRE Contractor team)"}, {"item": "Fix flipped/incorrect dates on training lines (200/201) in Airtable, marking them tentative and extending line 201 through January", "owner": "Carlos Vargas"}, {"item": "Remove the Market IQ walkthrough line from the plan", "owner": "Carlos Vargas"}, {"item": "Forward the Kristin stand-up invite and add Lisa (and Laura) to today's meeting", "owner": "Erin Moulesong"}, {"item": "Walk Kristin through the governance framework steps to confirm alignment", "owner": "Laura Hahn and Erin Moulesong"}, {"item": "Confirm and delete the unclear line item in the content authoring support stream", "owner": "Erin Moulesong"}], "noTranscript": false, "transcriptUrl": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/General/Meeting%20Recordings_Transcripts/Tech%20Calls/9%20-%20Governance%20next%20steps%20part%202%208.3.26/Governance%20next%20steps%20part%202.docx?web=1", "mid": "recie7dktiYIObzEy"}, {"title": "SEO/Analytics Assessment & Requirements Gathering", "date": "2026-08-03", "summary": "Globant (Swan Vilichay) walked CBRE stakeholders through SEO and web analytics workshop questions for Project Arc, covering sitemaps, robots.txt, indexation rules, CMS SEO checks, taxonomy governance, content lifecycle, structured data, and migration monitoring. Key SEO agreements included blocking search results pages from crawlers, consolidating robots.txt with page-level noindex options, and SEO team owning structured data standards. The group debated whether expired property listings should be unpublished versus marked off-market to preserve SEO authority, with Globant/Chartis to provide a recommendation. On analytics, ownership was aligned: shared data layer jointly owned by DT and MarTech/DM, DM analytics owning validation standards with DT supporting QA, MarTech (Ted) owning consent architecture, and business/marketing units owning KPIs while analytics owns metrics and publishing. Globant will implement SEO for Project Arc with hypercare before handoff to DT, and analytics stakeholders will join the August 10 and 20 design system/UX sessions to avoid losing tracking context in the new component model.", "decisions": ["Search results pages will be uniformly excluded from indexing/blocked from crawlers across all regions", "Case-by-case page exclusions will be handled via page-level noindex directives rather than only robots.txt", "SEO team owns structured data standards; implementation responsibility sits with DT (Globant during Project Arc)", "Globant is responsible for SEO implementation and post-launch remediation during hypercare, then hands over operations to DT", "Alexandra (analytics) is the approver/signatory for the measurement framework, with Ted as backup and stakeholder review", "Shared data layer architecture will be jointly owned by DT and MarTech (Digital Marketing), by mutual agreement", "DM analytics owns analytics validation standards and final sign-off on data correctness, supported by DT for testing/QA pipelines", "Consent/segment integration architecture will be owned by Ted (MarTech), with DT and analytics reviewing", "KPIs are owned by business lines/marketing teams (with goals agreed collaboratively); analytics owns metrics and KPI publishing", "Google Analytics will remain the source of truth for reporting, with Sitecore AI native analytics kept in sync rather than a separate mechanism", "Analytics/DM stakeholders (Alexandra, Matt, Ted, Salman) will be added to the Aug 10 and Aug 20 design system/UX sessions", "Phased collaborative approach: define measurement framework and event structure first, then detailed component-level tracking as templates are built in batches through October"], "actions": [{"item": "Draft new recommendations from the workshop, refine unanswered assessment questions, and send to CBRE later this week", "owner": "Swan Vilichay (Globant)"}, {"item": "Provide recommendation on handling expired/off-market property listings (unpublish vs. keep URL marked off-market to preserve SEO authority)", "owner": "Globant/Chartis (Swan Vilichay)"}, {"item": "Consolidate per-domain robots.txt files into future-state approach, factoring in Sitecore URLs, PDF/DAM assets, campaign pages, and country subfolder exclusions", "owner": "TBD"}, {"item": "Deliver list of bots/user agents in the gray zone for potential blocking (bots workstream)", "owner": "Ted Murena"}, {"item": "Provide recommendation for future-state campaign page de-indexing (page level vs. robots.txt folder level)", "owner": "Swan Vilichay (Globant)"}, {"item": "Bring up SEO monitoring/remediation ownership question with Kristen for clarity on scope beyond US/IM", "owner": "Ganesh Prabhu"}, {"item": "Define global metadata/SEO writing guidelines (existing ones should not be referenced)", "owner": "TBD"}, {"item": "Salman to check competitor research for how commercial sites handle expired listings", "owner": "Salman Arif"}, {"item": "Send follow-up questions on the overall measurement framework definition and scope", "owner": "Swan Vilichay (Globant)"}, {"item": "Add Alexandra and Matt (and Ted, Salman as listeners) to the Aug 10 design system and Aug 20 front-end UX sessions", "owner": "Erin Moulesong"}, {"item": "Provide list of components and business attributes that must be measurable at launch", "owner": "Alexandra (Analytics)"}, {"item": "Provide list of reports, identifiers, and journeys that must remain comparable through migration waves", "owner": "Alexandra (Analytics)"}, {"item": "Schedule any additional analytics workshops needed before end of August", "owner": "Erin Moulesong / Globant team"}, {"item": "Define process and mechanics for analytics release sign-off (DM analytics ownership supported by DT, automated where possible)", "owner": "DM Analytics / DT (Alexandra, Parthi)"}], "noTranscript": false, "transcriptUrl": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/General/Meeting%20Recordings_Transcripts/Tech%20Calls/10%20-%20SEO%20%26%20Analytics%208.3.26/SEO_Analytics%20Workshop.docx?web=1", "mid": "recJwn9IGzblQ2GQa"}, {"title": "Campaign & Base Pages content strategy and wireframes R1 - Talent/Careers", "date": "2026-08-04", "summary": "Globant walked CBRE stakeholders through Round 1 wireframes for the Careers landing page template (L2 topic landing), covering required vs. optional hero elements, the flexible body content section, and newly proposed components including a location-aware â€œjobs in your cityâ€ search/filter module and an animated Featured Career Paths component. Reviewers stressed the page is wireframe-stage structure only, not content or visual design, and that the template must flex across regions. Key feedback: jobs should move higher in the page order since roughly 95% of career-site traffic goes straight to open roles; the hero should support video as well as image; the career-paths module is likely redundant outside the US where career-path pages largely do not exist; and any embedded job search depends on a job feed from the applicant tracking system that TA Operations owns and that does not exist today. Open governance questions were raised about whether one site cascades by region versus ~50 separate country sites, and which filters are technically feasible. Next steps are written feedback as comments in the deck, a technical feasibility investigation, and a second wireframe review in about a week and a half before sign-off and visual design.", "decisions": ["Round 1 is wireframes only â€” hierarchy, structure, and component organization for desktop, not content or visual design", "The Careers landing page is confirmed as the main L2 careers landing page directly off the navigation, linking out to base-page templates", "Body content section order is flexible and can be resequenced based on stakeholder feedback", "Hero requires title and subtitle; eyebrow, CTAs, and media are optional, and the hero asset can be image or video", "Featured Career Paths module will support both automatic animation and click/tab interaction, with all copy editable via the CMS", "Job posts and job search remain on the existing applicant tracking system; only surfacing/feeding jobs into .com is being explored", "Two wireframe review rounds, then sign-off, then a design preview meeting plus two formal design reviews before build", "Feedback captured as comments directly in the shared deck; Globant will add verbal feedback from the recording"], "actions": [{"item": "Confirm with Kristen whether the session 5 attendee list is appropriate â€” core reviewers are not the right senior stakeholders for Talent/Careers (People team leaders should be invited instead)", "owner": "Erin Moulesong / Laura Hahn"}, {"item": "Reorder the body content so jobs/open opportunities appear first in the second module, reflecting that ~95% of traffic goes straight to job search", "owner": "Luis Bustamante / Globant"}, {"item": "Define desired job search filter criteria (match today's job search filtering, not just location) and validate technical feasibility with development", "owner": "Debbie Celado (requirements) / Globant and Jesper Bunch (feasibility)"}, {"item": "Set up calls with TA Operations (Tim or Kurt) and D&T to explore what job feeds can be exposed from the applicant tracking system into .com", "owner": "Subhabrat Padhi"}, {"item": "Provide the TA Operations point of contact", "owner": "Debbie Celado"}, {"item": "Evaluate effort and approach (iframe vs. custom build) for bringing job search into the .com page, including passing search variables through to the ATS site", "owner": "Jesper Bunch / Kristen Swenson"}, {"item": "Decide via governance whether the Featured Career Paths component is required or optional, and define rules for the 60+ countries without career-path pages", "owner": "Globant governance team / Andrea Sanchez"}, {"item": "Answer whether sites will be built once and cascaded/replicated by region versus maintained as separate country sites, since this drives personalization and filtering", "owner": "Andrea Sanchez / governance team"}, {"item": "Show alternate content-type explorations for modules like Featured Career Paths in Round 2 to reflect non-US regional needs", "owner": "Luis Bustamante / Globant"}, {"item": "Add written feedback as comments in the shared wireframe deck", "owner": "All CBRE reviewers"}, {"item": "Schedule the Round 2 wireframe review (approximately a week and a half out)", "owner": "Erin Moulesong"}], "noTranscript": false, "transcriptUrl": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/General/Meeting%20Recordings_Transcripts/Page%20Template%20Wireframes%20and%20Designs/Base%20%26%20Campaign%20Page%20-%20Talent%208.4.26/Base%20Pages%20content%20strategy%20and%20wireframes%20R1%20-%20Talent_Careers.docx?web=1", "mid": "rec6Zprc0wYLYW8gj"}], "label": "Week of Aug 3, 2026", "source": "Meeting records (SharePoint)", "sourceUrl": "https://cbre.sharepoint.com/teams/projectarc/Shared%20Documents/General/Meeting%20Recordings_Transcripts/Weekly%20Meeting%20Recaps"};

// Per-person sign-off state parsed from the SharePoint findings docs (checkbox tables)
const DOC_SIGNOFFS = {"rec350juO6btIEQx6": {"doc": "2.1 Backend Assessment Findings - Final", "asOf": "2026-08-04", "due": "2026-07-27", "meeting": "Backend Assessment & Requirements Gathering (Jun 15)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.1 Backend Assessment Findings - Final.docx?web=1", "pending": [], "done": ["Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam", "Kathleen Garwood", "Eddie Wong", "Ganesh Prabhu", "Alexandra Cazangiu", "Lisa Anderson", "Laura Hahn", "Ted Murena", "Kristen Swenson"]}, "recBedTb4okSfQ6gc": {"doc": "2.2 Localization Assessment Findings - Final", "asOf": "2026-08-04", "due": "2026-07-27", "meeting": "Localization Assessment & Requirements Gathering (Jun 15)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.2 Localization Assessment Findings - Final.docx?web=1", "pending": [], "done": ["Subhabrat Padhi", "Parthi Thanikachalam", "Meher Jaynavula", "David Garcia", "Kathleen Garwood", "Eddie Wong", "Laura Hahn", "Ganesh Prabhu", "Alexandra Cazangiu", "Lisa Anderson", "Ted Murena", "Kristen Swenson"]}, "recS5p38vaWklBLdO": {"doc": "2.4 SSO Assessment Findings - Final", "asOf": "2026-08-04", "due": "2026-07-31", "meeting": "SSO Assessment & Requirements Gathering (Jun 29)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.4 SSO Assessment Findings - Final.docx?web=1", "pending": [], "done": ["Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam", "Lisa Anderson", "Ted Murena", "Kristen Swenson"]}, "reciLFmPane84YUyn": {"doc": "2.5 Security Monitoring Assessment Findings - Final", "asOf": "2026-08-04", "due": "2026-07-31", "meeting": "Security & Monitoring Requirements Gathering (Jul 1)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.5 Security Monitoring Assessment Findings - Final.docx?web=1", "pending": [], "done": ["Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam", "Ted Murena", "Alexandra Cazangiu", "Kristen Swenson"]}, "recvpVDUP1RLtiaqm": [{"doc": "2.7 Content Inventory Assessment Findings", "asOf": "2026-08-04", "due": "2026-07-31", "meeting": "Content Inventory + Sprinklr Workshop (Jul 20)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.7 Content Inventory Assessment Findings.docx?web=1", "pending": [], "done": ["Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam", "Kathleen Garwood", "Eddie Wong", "Laura Hahn", "Ganesh Prabhu", "Alexandra Cazangiu", "Ted Murena", "Lisa Anderson", "Kristen Swenson"]}, {"doc": "2.9 Integration Group 8 - Sprinklr Assessment Findings", "asOf": "2026-08-04", "due": "2026-08-03", "meeting": "Content Inventory + Sprinklr Workshop (Jul 20)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.9 Integration Group 8 - Sprinklr Assessment Findings.docx?web=1", "pending": ["Ted Murena", "Lisa Anderson", "Ganesh Prabhu"], "done": ["Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam", "Kathleen Garwood", "Kristen Swenson", "Chartis"]}], "recZxHtzp78HbyrLk": {"doc": "2.9 Integration Group 1 - GPS Profile Findings", "asOf": "2026-08-04", "due": "2026-08-03", "meeting": "Market Canvas Discovery session + GPS People Search (Jul 20)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.9 Integration Group 1 - GPS Profile Findings.docx?web=1", "pending": ["David Garcia"], "done": ["Subhabrat Padhi", "Meher Jaynavula", "Parthi Thanikachalam", "Lisa Anderson", "Ted Murena", "Kathleen Garwood", "Eddie Wong", "Kristen Swenson"]}, "recFKZi8pDkJVj9CT": {"doc": "2.9 Integration Group 1 Property Listings Findings - Final", "asOf": "2026-08-04", "due": "2026-07-31", "meeting": "Property Listings Strategy & Tech Workshop (Jul 1)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.9 Integration Group 1 Property Listings Findings - Final.docx?web=1", "pending": ["Steve Yi", "Ted Murena"], "done": ["Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam", "Jolanda Carroll", "Kathleen Garwood", "Eddie Wong", "Laura Hahn", "Ganesh Prabhu", "Alexandra Cazangiu", "Kristen Swenson"], "note": "Steve Yi marked as deferring to Jolanda Carroll, who has signed off"}, "recjg7zO8CwFrzihE": {"doc": "2.9 Integration Group 2- Quick to Cover Findings - Final", "asOf": "2026-08-04", "due": "", "meeting": "Integration Group 2 Workshop (Jul 7)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.9 Integration Group 2- Quick to Cover Findings - Final.docx?web=1", "pending": ["David Garcia"], "done": ["Subhabrat Padhi", "Meher Jaynavula", "Parthi Thanikachalam", "Lisa Anderson", "Ted Murena", "Kristen Swenson"], "note": "Padhi checked but noted 'defer to Parthi on this'; no target date stated"}, "reciwx4IhLkRxHIt4": {"doc": "2.9 Integration Group 3 - Chartis Findings - Final", "asOf": "2026-08-04", "due": "2026-08-03", "meeting": "Integration Group 3 Workshop (Jul 8)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.9 Integration Group 3 - Chartis Findings - Final.docx?web=1", "pending": ["Meher Jaynavula", "David Garcia", "Ted Murena", "Chartis"], "done": ["Subhabrat Padhi", "Parthi Thanikachalam", "Kathleen Garwood", "Ganesh Prabhu", "Alexandra Cazangiu", "Kristen Swenson"]}, "reco3gpScvXXtRbwG": {"doc": "2.9 Integration Group 4 - Simple Embed Findings - Final", "asOf": "2026-08-04", "due": "2026-07-31", "meeting": "Integration Group 4 Workshop (Jul 15)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.9 Integration Group 4 - Simple Embed Findings - Final.docx?web=1", "pending": ["Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam", "Kathleen Garwood", "Laura Hahn", "Ted Murena", "Lisa Anderson", "Kristen Swenson"], "done": ["Eddie Wong"]}, "rec8jUX9b3pxVmOos": {"doc": "2.9 Integration Group 5 & 6 Findings - Final", "asOf": "2026-08-04", "due": "2026-07-31", "meeting": "Integration Groups 5 & 6 Workshop (Jul 15)", "url": "https://cbre.sharepoint.com/teams/projectarc/Shared Documents/General/Tech Implementation/Technical Requirements/Tech Discovery Findings/CBRE Tech Discovery 2.9 Integration Group 5 & 6 Findings - Final.docx?web=1", "pending": ["Subhabrat Padhi", "Meher Jaynavula", "David Garcia", "Parthi Thanikachalam", "Kathleen Garwood", "Laura Hahn", "Ted Murena", "Lisa Anderson", "Kristen Swenson"], "done": []}};
function feedbackWindowOpen(m) {
  if (!m.feedback || !m.feedback.length) return false;
  const t = today();
  const d = displayDate(m);
  // Window closes when a later session in the same series has already happened
  // (feedback was for that round) or the meeting is more than 10 days past.
  const k = SERIES_KEY_OF.get(m.id);
  if (k) {
    const sq = SERIES.get(m.id);
    const later = (SERIES_GROUPS.get(k) || []).filter(x => SERIES.get(x.id).n > sq.n);
    if (later.some(x => { const xd = displayDate(x); return xd && xd <= t; })) return false;
  }
  if (d && d < t) {
    const cut = new Date(t + "T00:00:00"); cut.setDate(cut.getDate() - 10);
    if (d < isoDate(cut)) return false;                    // stale
    if (m.status === "Completed" && !feedbackMentioned(m)) return false; // done, doc was reference material
  }
  return true;
}
function soList(id) { const v = DOC_SIGNOFFS[id]; return !v ? [] : (Array.isArray(v) ? v : [v]); }
function owesFeedback(person, m) {
  const sos = soList(m.id);
  if (sos.length) return sos.some(so => so.pending.includes(person));
  if (!feedbackWindowOpen(m)) return false;
  if (!peopleFor(m).has(person)) return false;
  const team = PERSON_TEAM[person] || "";
  if (team === "CBRE DM") return true;
  return feedbackMentioned(m);
}

const MEETING_PEOPLE = {"recmQWKnCzJvr3iBN": ["Alex Habib", "Alexandra Cazangiu", "Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Casey Pennington", "Cathrine Jermiin", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Grace Sin", "Jill Steinberg", "Joseph Servia", "Jules Allen", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Nestor Martinez", "Salman Arif", "Sarang Paraskar", "Sonia Luna", "Swan Vilichay", "Ted Murena", "Tim Eschenauer"], "recA1EsyNVb8DEO3A": ["Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Cathrine Jermiin", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Guilherme Paz", "Joseph Servia", "Jules Allen", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Liz Young", "Nadia Husty", "Salman Arif", "Sarang Paraskar", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Tess Peterson", "Tim Eschenauer"], "recZSzlpNIcdvzOIh": ["Alexandra Cazangiu", "Allie DeBaere", "Andrew Nadel", "David Garcia", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Joseph Servia", "Jules Allen", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Liz Young", "Meher Jaynavula", "Salman Arif", "Subhabrat Padhi", "Ted Murena", "Tim Eschenauer"], "recrTR6nOIabN0zWX": ["Alexandra Cazangiu", "Allie DeBaere", "Andrew Nadel", "Casey Pennington", "Charles Sundar", "David Garcia", "David Ting", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Grace Sin", "Jesper Bunch", "Jill Steinberg", "John George", "Joseph Servia", "Jules Allen", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Sussman", "Meher Jaynavula", "Nestor Martinez", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sandeep Dave", "Steve Yi", "Subhabrat Padhi", "Ted Murena", "Tim Eschenauer"], "recc7xXVWPnNGkOx0": ["Ada Choi", "Alexandra Cazangiu", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Barnabas Toth", "Bradley Werner", "Buse Beysungu", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Darin Mellot", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Joseph Servia", "Jules Allen", "Julie Whelan", "Kanishk Verghese", "Kasia Dziewulska", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Max Simchowitz", "Meher Jaynavula", "Nick Jablonski", "Nicole LaRusso", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "Tasos Vezyridis", "Ted Murena", "Tim Eschenauer"], "reccP6hB9rBJypWEU": ["Alexandra Cazangiu", "Allie DeBaere", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Craig Stover", "David Garcia", "David Ting", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Grace Sin", "Jesper Bunch", "Joseph Servia", "Jules Allen", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Liz Young", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Tim Eschenauer"], "recNG0R68DoyoqNXv": ["Alexandra Cazangiu", "Allie DeBaere", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Grace Sin", "Jesper Bunch", "Jules Allen", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Liz Young", "Matt Sussman", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Tim Eschenauer"], "recJwn9IGzblQ2GQa": ["Alexandra Cazangiu", "Allie DeBaere", "Andrew Nadel", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Jesper Bunch", "John George", "Joseph Servia", "Jules Allen", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Liz Young", "Matt Sussman", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sandeep Dave", "Steve Yi", "Subhabrat Padhi", "Ted Murena", "Tim Eschenauer"], "recwvQ0KTizJbCWRr": ["Aaron Clanton", "Alex Habib", "Alexandra Cazangiu", "Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Cathrine Jermiin", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Joseph Servia", "Jules Allen", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Meher Jaynavula", "Salman Arif", "Sarang Paraskar", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Tim Eschenauer"], "recfj8Wykc1aFvCFH": ["Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bernadette Keane", "Brigit Bruning", "Cari Drysdale", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "David Ting", "Debbie Celado", "Denis Farias", "Dominick Norwood", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jesper Bunch", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Luis Bustamante", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Robson Melendre", "Rosy Luo", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal"], "recbcU6JtJniEzdOy": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brigit Bruning", "Cari Drysdale", "Carlos Becil", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Leslie Motiwalla", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "recoJLdDqI4SSYDmi": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Whitney Davidson"], "recYZt0anyXEcRDhp": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Leslie Motiwalla", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Whitney Davidson", "Yvonne Ehinger"], "recvuNxmmn8XxGLmo": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Cathrine Jermiin", "Craig Stover", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Grace Sin", "Jess Lovell", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kristina Sanderson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "rec6Zprc0wYLYW8gj": ["Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Erin Moulesong", "George Austen", "Guilherme Paz", "Joanne Sin", "John Marcone", "Jules Allen", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nico Bonanno", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Tim Eschenauer", "Wendy Sherwood"], "reclOJHjwrk35Vlew": ["Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "David Ting", "Debbie Celado", "Denis Farias", "George Austen", "Georgie Cloke", "Guilherme Paz", "Jade Harper", "Joanne Sin", "John Marcone", "Jules Allen", "Katy Martin", "Kirdric Hill", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nico Bonanno", "Sarah Wyse", "Sonia Luna", "Stephen Smith", "Subhabrat Padhi", "TJ McCormick", "Tim Eschenauer", "Wendy Sherwood"], "recoyyfAhMBv3oV33": ["Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Barnabas Toth", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Federica Vangelisti", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leah King", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Rachel Labowe", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Yadi Venegas"], "recP7m3VpjIs4at3b": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leah King", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Rachel Labowe", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yadi Venegas", "Yvonne Ehinger"], "recpt8TAjJWpcttIM": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "James Hodson", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sara Wilcox", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Yadi Venegas"], "recPI3CE5z7uA41ID": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Geoff Gaviria", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "James Hodson", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yadi Venegas", "Yvonne Ehinger"], "rectcL7kSPdjAKiUa": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Brittany Warnica", "Buse Beysungu", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Jennifer Morgan", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kanishk Verghese", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nestor Martinez", "Rachel Labowe", "Sara Wilcox", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Yadi Venegas"], "recVFVt475iPzlkIa": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brittany Warnica", "Buse Beysungu", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "Darin Mellot", "Denis Farias", "Eddie Wong", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Henry Chin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Julie Cooper", "Julie Whelan", "Kanishk Verghese", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nestor Martinez", "Nicole LaRusso", "Rachel Labowe", "Robson Melendre", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yadi Venegas", "Yvonne Ehinger"], "recpnWZV6eqTf6lOQ": ["Alexandra Cazangiu", "Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Brigit Bruning", "Cameron Pilkey", "Casey Pennington", "Cathrine Jermiin", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Sin", "Jill Steinberg", "Joanne Sin", "Jolanda Carroll", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kristina Sanderson", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Parthi Thanikachalam", "Salman Arif", "Sonia Luna", "Steve Yi", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "recEWnKMFwrFPY9SA": ["Alexandra Cazangiu", "Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Brigit Bruning", "Cameron Pilkey", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "David Ting", "Denis Farias", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Sin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kristina Sanderson", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Salman Arif", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "recJaELsibcWCMY31": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Darin Mellot", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Whelan", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Nadia Husty", "Nicole LaRusso", "Salman Arif", "Sara Wilcox", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Eschenauer"], "recBxuWPQLAqNYsbE": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Darin Mellot", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Cooper", "Julie Whelan", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Nicole LaRusso", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Salman Arif", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "recgJLs1xr37Hx9OX": ["Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Debbie Celado", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sara Wilcox", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tess Peterson", "Tim Eschenauer"], "rec6ORtqGY0am9bue": ["Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brigit Bruning", "Cari Drysdale", "Carlos Becil", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Craig Stover", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Tess Peterson", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal"], "recHlCwoV5se1BxFC": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "James Hodson", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sara Wilcox", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Wendy Sherwood", "Yadi Venegas"], "recRlhKDgztxwHw4l": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Geoff Gaviria", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "James Hodson", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Wendy Sherwood", "Yadi Venegas", "Yvonne Ehinger"], "recGjDjZiwpP85Nyy": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Izaskun Excurra Gascue", "James Hodson", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Yadi Venegas"], "rec7MwDbQgerWklr1": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Izaskun Excurra Gascue", "James Hodson", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Yadi Venegas"], "reccFZWcM9fvyRNVK": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Geoff Gaviria", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "James Hodson", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Nico Bonanno", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yadi Venegas", "Yvonne Ehinger"], "recfzG1P0FydeNPI0": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leah King", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Rachel Labowe", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Yadi Venegas"], "rec6ef4WLLOFt3kIj": ["Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Brigit Bruning", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Debbie Celado", "Denis Farias", "Erin Moulesong", "Guilherme Paz", "Joanne Sin", "John Marcone", "Jules Allen", "Katy Martin", "Kristen Swenson", "Laura Hahn", "Liz Young", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nico Bonanno", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Tim Eschenauer", "Wendy Sherwood"], "rechRlXuCrEY7YE0A": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leah King", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Rachel Labowe", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "rec7FYvGQ0BegVd0O": ["Ada Choi", "Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brian Cornett", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Darin Mellot", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Whelan", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Michelle Crecca", "Nadia Husty", "Nick Jablonski", "Nicole LaRusso", "Salman Arif", "Sara Wilcox", "Sarah Wyse", "Sarang Paraskar", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Eschenauer", "Varun Kumar"], "recESAG9YMkzt9UkI": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brigit Bruning", "Brittany Warnica", "Buse Beysungu", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Darin Mellot", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Jennifer Morgan", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Julie Whelan", "Kanishk Verghese", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Nadia Husty", "Nestor Martinez", "Nicole LaRusso", "Rachel Labowe", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Eschenauer", "Yadi Venegas"], "recKINLYmVDJkVdUD": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brigit Bruning", "Brittany Warnica", "Buse Beysungu", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "Darin Mellot", "Denis Farias", "Eddie Wong", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Henry Chin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Julie Cooper", "Julie Whelan", "Kanishk Verghese", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nestor Martinez", "Nicole LaRusso", "Rachel Labowe", "Robson Melendre", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yadi Venegas", "Yvonne Ehinger"], "rec9tqo3N1gZeSwVb": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Whitney Davidson"], "recA6R2QpUnjeooVL": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "recKXkSAUeAxcyP43": ["Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Brigit Bruning", "Cari Drysdale", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sarang Paraskar", "Sev Ziya", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Ted Murena", "Tess Peterson", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Whitney Davidson", "Yvonne Ehinger"], "rec8r1ouHopSI7Bqo": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tess Peterson", "Tim Eschenauer"], "rec15PR3kPH2Vevq0": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Sara Wilcox", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "recC2pcbZwlfxC3xI": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "recjSsA4voKv1Y12x": ["Alexandra Cazangiu", "Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Brigit Bruning", "Cameron Pilkey", "Casey Pennington", "Cathrine Jermiin", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Sin", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kristen Swenson", "Kristina Sanderson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Salman Arif", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "reciaClFtBZ8Jievw": ["Alexandra Cazangiu", "Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Brigit Bruning", "Cameron Pilkey", "Casey Pennington", "Cathrine Jermiin", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Sin", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kristen Swenson", "Kristina Sanderson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Salman Arif", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "recWKX3dtdLv6sgYO": ["Alexandra Cazangiu", "Allie DeBaere", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Brigit Bruning", "Cameron Pilkey", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Sin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kristina Sanderson", "Laura Hahn", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Salman Arif", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "rec4RMwmBrSRX3h19": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Casey Pennington", "Cathrine Jermiin", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "rectkEXS2elaobMrD": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Casey Pennington", "Cathrine Jermiin", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sara Wilcox", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer"], "reciNoph9LyPslfUz": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Brigit Bruning", "Cari Drysdale", "Carlos Becil", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Craig Stover", "David Ting", "Denis Farias", "Eddie Wong", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "Jules Allen", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Leslie Motiwalla", "Lisa Anderson", "Lit Kris", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Eschenauer", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "recJ9QksLD4Fv6IRl": ["Ada Choi", "Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Allie DeBaere", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brian Cornett", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Darin Mellot", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Jules Allen", "Julie Whelan", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Liz Young", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Michelle Crecca", "Nadia Husty", "Nick Jablonski", "Nicole LaRusso", "Salman Arif", "Sara Wilcox", "Sarah Wyse", "Sarang Paraskar", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Eschenauer", "Varun Kumar"], "recMXUVnf9NnsuYQC": ["Andrea Sanchez"], "rec3isZxvZRMz6evL": ["Andrea Sanchez"], "receKyiO7sKqMRqMz": ["Aaron Clanton", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Joanne Sin", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kristina Sanderson", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "recsUqrFNuwa3f6Ik": ["Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Gregory", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bonnie Ang", "Brigit Bruning", "Cathrine Jermiin", "Celine Savy", "Cora Lai", "David Garcia", "Denis Farias", "Dinah Ng", "Eddie Wong", "Edwin Guiza", "Ella Bahen", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Grace Sin", "Helina Hein", "Izaskun Excurra Gascue", "Julie Cooper", "Karen Lau", "Kathleen Garwood", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lit Kris", "Meher Jaynavula", "Melvin Lin", "Nadia Husty", "Nick Jablonski", "Reuben Tay", "Ricky Hernden", "Rosy Luo", "Sabine Madaus", "Sarah Al Attar", "Sarang Paraskar", "Shannon Keegan", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Tess Peterson", "Tian Shen", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "recvHkiE1tf433rbb": ["Alex Habib", "Andrea Sanchez", "Cathrine Jermiin", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Jesper Bunch", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Subhabrat Padhi"], "recohIgBj4S6hrI6a": ["Alex Habib", "Alexandra Cazangiu", "Andrea Sanchez", "Andrew Nadel", "Benji Baer", "Bradley Werner", "Brigit Bruning", "Cathrine Jermiin", "Chito Arabaca", "Debbie Celado", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "Jennifer Morgan", "Jess Lovell", "Joanne Sin", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lisa Anderson", "Matt Siegel", "Michelle Crecca", "Moichi Watanabe", "Nick Jablonski", "Sarah Wyse", "TJ McCormick", "Ted Murena", "Vijayendra Agarwal"], "recn4Goyknvdoub86": ["Alexandra Cazangiu", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Casey Pennington", "David Garcia", "Eddie Wong", "Ganesh Prabhu", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Meher Jaynavula", "Michelle Crecca", "Nestor Martinez", "Nick Jablonski", "Robson Melendre", "Subhabrat Padhi", "Ted Murena"], "recY63IxNnlmotJpb": ["Alex Habib", "Andrea Sanchez", "Brigit Bruning", "Cathrine Jermiin", "Chito Arabaca", "Denis Farias", "Erin Moulesong", "Jess Lovell", "Joanne Sin", "Katy Martin", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Marwa Khalife", "Matt Dale", "Matt Siegel", "Sarah Wyse", "Sarang Paraskar", "TJ McCormick"], "recrXfJZ1eOCoXQcL": ["Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Erin Moulesong", "Kristen Swenson", "Laura Hahn"], "reces5eFH8TOw4SRM": ["Alex Habib", "Alexandra Cazangiu", "Andrea Sanchez", "Andrew Nadel", "Cathrine Jermiin", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Jesper Bunch", "Jill Steinberg", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Subhabrat Padhi", "Ted Murena"], "rec2V7rNlTpacjUaO": ["Alex Habib", "Alexandra Cazangiu", "Andrea Sanchez", "Andrew Nadel", "Cathrine Jermiin", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Jesper Bunch", "Jill Steinberg", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Subhabrat Padhi", "Ted Murena"], "recemwjrHSxJ7d9bE": ["Alex Habib", "Andrea Sanchez", "Brigit Bruning", "Cathrine Jermiin", "Chito Arabaca", "Denis Farias", "Erin Moulesong", "Jess Lovell", "Joanne Sin", "Kristen Swenson", "Laura Hahn", "Matt Siegel", "Sarah Wyse", "Sarang Paraskar", "TJ McCormick"], "recHVyBsGDvFNPIRx": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Julie Cooper", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leah King", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Rachel Labowe", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Tim Kemp", "Vijayendra Agarwal", "Yadi Venegas", "Yvonne Ehinger"], "recelOmmZzp3koxgS": ["Ada Choi", "Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brian Cornett", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "Darin Mellot", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Henry Chin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Julie Cooper", "Julie Whelan", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nicole LaRusso", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Salman Arif", "Sara Wilcox", "Sarah Wyse", "Sarang Paraskar", "Sev Ziya", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Kemp", "Varun Kumar", "Vijayendra Agarwal", "Yvonne Ehinger"], "recvpVDUP1RLtiaqm": ["Aaron Clanton", "Alex Habib", "Alexandra Cazangiu", "Allie DeBaere", "Andrea Sanchez", "Andrei Shynkarenka", "Andrew Nadel", "Brian Cornett", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "Craig Stover", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "John George", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Matt Sussman", "Max Simchowitz", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sandeep Dave", "Sarang Paraskar", "Sonia Luna", "Steve Yi", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Varun Kumar"], "recAULlpZNFE1hvZA": ["Aaron Clanton", "Alex Habib", "Alexandra Cazangiu", "Andrea Sanchez", "Andrei Shynkarenka", "Cathrine Jermiin", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Joanne Sin", "Kathleen Garwood", "Katy Martin", "Kristen Swenson", "Laura Hahn", "Marwa Khalife", "Matt Dale", "Matt Siegel", "Meher Jaynavula", "Sarang Paraskar", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "recVCnl21xsPAZtUN": ["Aaron Clanton", "Alex Habib", "Alexandra Cazangiu", "Andrea Sanchez", "Andrei Shynkarenka", "Andrew Nadel", "Brian Cornett", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "Craig Stover", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "John George", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sandeep Dave", "Sarang Paraskar", "Sonia Luna", "Steve Yi", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Varun Kumar"], "recZxHtzp78HbyrLk": ["Aaron Clanton", "Alex Habib", "Alexandra Cazangiu", "Andrea Sanchez", "Andrei Shynkarenka", "Andrew Nadel", "Brian Cornett", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "Craig Stover", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Joanne Sin", "John George", "Kathleen Garwood", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Matt Dale", "Matt Siegel", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sandeep Dave", "Sarang Paraskar", "Sonia Luna", "Steve Yi", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena", "Varun Kumar"], "recf7NyykUKvaJWRy": ["Andrea Sanchez", "Denis Farias", "Erin Moulesong", "Ganesh Prabhu", "Kathleen Garwood", "Laura Hahn", "Subhabrat Padhi"], "recSO5ckRhdUWcjDO": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Federica Vangelisti", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "James Hodson", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nadia Husty", "Nick Jablonski", "Sara Wilcox", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Ted Murena", "Yadi Venegas"], "recXcs1F74U03DnOw": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Darin Mellot", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Henry Chin", "James Hodson", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Julie Whelan", "Kasia Dziewulska", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Michelle Crecca", "Nadia Husty", "Nick Jablonski", "Nico Bonanno", "Nicole LaRusso", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Yadi Venegas"], "recCfSZaH7FPiLqeo": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Bernadette Keane", "Bradley Werner", "Brigit Bruning", "Cari Drysdale", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Chito Arabaca", "Craig Stover", "Darin Mellot", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Ella Bahen", "Emily Wilson", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Geoff Gaviria", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Henry Chin", "Inci Gecekusu", "Izaskun Excurra Gascue", "James Hodson", "Jennifer Morgan", "Jess Lovell", "Jill Steinberg", "Joanne Sin", "John Marcone", "Julie Cooper", "Julie Whelan", "Kasia Dziewulska", "Kathleen Garwood", "Katie Peters", "Katy Martin", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Nico Bonanno", "Nicole LaRusso", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Sev Ziya", "Sonia Luna", "Steve Iaco", "Subhabrat Padhi", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tim Kemp", "Vijayendra Agarwal", "Yadi Venegas", "Yvonne Ehinger"], "recqmUvKsvqZqsf1w": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Brittany Warnica", "Buse Beysungu", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Denis Farias", "Eddie Wong", "Emily Wilson", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Cary", "Grace Sin", "Greg Grunston", "Jennifer Morgan", "Jill Steinberg", "Joanne Sin", "Julie Whelan", "Kanishk Verghese", "Kasia Dziewulska", "Kathleen Garwood", "Katy Martin", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Max Simchowitz", "Nadia Husty", "Nestor Martinez", "Nicole LaRusso", "Rachel Labowe", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Yadi Venegas"], "recFKZi8pDkJVj9CT": ["Aaron Clanton", "Alex Habib", "Alexandra Cazangiu", "Andrea Sanchez", "Andrew Nadel", "Cathrine Jermiin", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Jesper Bunch", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Meher Jaynavula", "Sonia Luna", "Subhabrat Padhi", "Ted Murena"], "recDW9ykQNR2uUUAX": ["Andrea Sanchez", "Craig Stover", "Laura Hahn", "Lisa Anderson", "Matt Dale", "Matt Siegel"], "recukryNS5EUBHsIb": ["Andrea Sanchez", "Andrew Nadel", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Debbie Celado", "Denis Farias", "Erin Moulesong", "George Austen", "Georgie Cloke", "Guilherme Paz", "Jade Harper", "Joanne Sin", "John Marcone", "Katy Martin", "Kristen Swenson", "Laura Hahn", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Nico Bonanno", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Stephen Smith", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Wendy Sherwood"], "recEDUSOrCjPXfKgE": ["Andrea Sanchez", "Andrew Nadel", "Benji Baer", "Brigit Bruning", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Debbie Celado", "Deborah Stambaugh", "Denis Farias", "Eric Xiao", "Erin Moulesong", "George Austen", "Georgie Cloke", "Guilherme Paz", "Jade Harper", "Jennifer Morgan", "Joanne Sin", "John Marcone", "Katy Martin", "Kiera Fryar", "Kristen Swenson", "Laura Hahn", "Leslie Motiwalla", "Matt Bodimeade", "Matt Dale", "Matt Siegel", "Matt Sussman", "Michelle Crecca", "Moichi Watanabe", "Nick Jablonski", "Nico Bonanno", "Sara Wilcox", "Sarah Wyse", "Sonia Luna", "Stephen Smith", "Subhabrat Padhi", "Swan Vilichay", "TJ McCormick", "Vijayendra Agarwal", "Wendy Sherwood"], "recSUo3QHcL4tFLep": ["Alex Habib", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrea Sanchez", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Cathrine Jermiin", "David Garcia", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Grace Cary", "Greg Grunston", "Guilherme Paz", "Jade Harper", "Jennifer Morgan", "Jesper Bunch", "Jill Steinberg", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lindsay Wester", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Sara Wilcox", "Steve Iaco", "Subhabrat Padhi", "Ted Murena", "Wendy Sherwood"], "recMw74sRnrOI39FL": ["Andrea Sanchez", "Cathrine Jermiin", "Craig Stover", "Laura Hahn", "Lisa Anderson"], "recTMUhjSXLdS9hLn": ["Alexandra Cazangiu", "Andrew Nadel", "Casey Pennington", "Charles Sundar", "David Garcia", "David Ting", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Grace Sin", "Jill Steinberg", "John George", "Joseph Servia", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nestor Martinez", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sandeep Dave", "Steve Yi", "Subhabrat Padhi", "Ted Murena"], "reco3gpScvXXtRbwG": ["Aaron Clanton", "Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "John George", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sandeep Dave", "Sonia Luna", "Steve Yi", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "rec8jUX9b3pxVmOos": ["Aaron Clanton", "Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "John George", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sandeep Dave", "Sonia Luna", "Steve Yi", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "recMNdz7WjWllNpyU": ["Aaron Clanton", "Aldo Martinez", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "Dave Horrigan", "David Garcia", "Denis Farias", "Derek Correia", "Edwin Guiza", "Erin Moulesong", "Goran Halvarsson", "Irina Rock-Gilbertson", "Jesper Bunch", "John George", "Josh Frickle", "Kirdric Hill", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sandeep Dave", "Sonia Luna", "Steve Yi", "Subhabrat Padhi", "Swan Vilichay"], "reczhAl4QwkhIxC5l": ["Benji Baer", "Kristen Swenson", "Marwa Khalife", "Sandeep Dave"], "recgO24rGA3LFNhhP": ["Alexandra Cazangiu", "Andrew Nadel", "Casey Pennington", "Craig Stover", "David Ting", "Eddie Wong", "Emily Ozanian", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Grace Sin", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kristen Swenson", "Kristin Hanafin", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Nestor Martinez", "Sneha Priyadarshni", "Stephanie Robinson", "Ted Murena"], "rec0NvM26lcVNF8Au": ["Ada Choi", "Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Bradley Werner", "Buse Beysungu", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Darin Mellot", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Grace Sin", "Henry Chin", "Jesper Bunch", "Julie Whelan", "Kanishk Verghese", "Kasia Dziewulska", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Max Simchowitz", "Meher Jaynavula", "Nestor Martinez", "Nicole LaRusso", "Parthi Thanikachalam", "Phani Abburi", "Sonia Luna", "Subhabrat Padhi", "Tasos Vezyridis", "Ted Murena"], "rec0jTflthbvMj91s": ["Alexandra Cazangiu", "Andrew Nadel", "Benji Baer", "Casey Pennington", "Cathrine Jermiin", "David Garcia", "David Ting", "Deborah Stambaugh", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Eric Xiao", "Erin Moulesong", "Ganesh Prabhu", "Grace Sin", "Jennifer Morgan", "Jill Steinberg", "Kathleen Garwood", "Kiera Fryar", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Michelle Crecca", "Moichi Watanabe", "Nick Jablonski", "Sarah Wyse", "Subhabrat Padhi", "Ted Murena", "Vijayendra Agarwal"], "recC9EN0FXpD4GYYp": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Benji Baer", "Bradley Werner", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "David Garcia", "David Ting", "Debbie Celado", "Deborah Stambaugh", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jade Harper", "Jennifer Morgan", "Jill Steinberg", "Julie Cooper", "Kathleen Garwood", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lisa Anderson", "Lit Kris", "Matt Bodimeade", "Meher Jaynavula", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Subhabrat Padhi", "Ted Murena", "Tess Peterson", "Tim Kemp", "Vijayendra Agarwal", "Yvonne Ehinger"], "rec488hBG0JKG13xu": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrew Nadel", "Anna Marissa Fetz", "Barnabas Toth", "Benji Baer", "Bradley Werner", "Casey Pennington", "Cathrine Jermiin", "Celine Savy", "Darin Mellot", "David Garcia", "David Ting", "Debbie Celado", "Deborah Stambaugh", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Ella Bahen", "Eric Xiao", "Erin Moulesong", "Federica Vangelisti", "Ganesh Prabhu", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Henry Chin", "Inci Gecekusu", "Izaskun Excurra Gascue", "Jade Harper", "Jennifer Morgan", "Jill Steinberg", "Julie Cooper", "Julie Whelan", "Kasia Dziewulska", "Kathleen Garwood", "Kiera Fryar", "Kim Stutterheim", "Kim Verdonck", "Kirdric Hill", "Kristen Swenson", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Leslie Motiwalla", "Lindsay Wester", "Lisa Anderson", "Lit Kris", "Matt Bodimeade", "Max Simchowitz", "Meher Jaynavula", "Michelle Crecca", "Moichi Watanabe", "Nadia Husty", "Nick Jablonski", "Nicole LaRusso", "Robson Melendre", "Rosy Luo", "Sabine Madaus", "Sara Wilcox", "Sarah Wyse", "Steve Iaco", "Subhabrat Padhi", "Tasos Vezyridis", "Ted Murena", "Tess Peterson", "Tim Kemp", "Vijayendra Agarwal", "Wendy Sherwood", "Yvonne Ehinger"], "recJ4dREqmnLClIRN": ["Ada Choi", "Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Buse Beysungu", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "Darin Mellot", "David Garcia", "Debbie Celado", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "John Marcone", "Julie Whelan", "Kanishk Verghese", "Kasia Dziewulska", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Max Simchowitz", "Meher Jaynavula", "Nadia Husty", "Nathan Webster", "Nestor Martinez", "Nicole LaRusso", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sonia Luna", "Subhabrat Padhi", "TJ McCormick", "Tasos Vezyridis", "Ted Murena", "Tess Peterson"], "recDWe9ZqIaHgHov7": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "rec4LpK2FPscW3X50": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "recLxBf1sP1nhmbLe": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "recTZM6gUd8rGMsts": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "reccSRkEdy2H3wsXC": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "recFdeTykDHd8HwKC": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "recCjEbLKWVZv9fQj": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "reclX1pTlvBQ0d9xG": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "recW3euPUgH6Kr0B7": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "recW0xAeB4FerzElf": ["Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "David Ting", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Laura Hahn", "Matt Bodimeade", "Meher Jaynavula", "Nestor Martinez", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "rec0V4jaQLcFmPJ5g": ["Alexandra Cazangiu", "Alissa Van Der Westhuizen", "Amanda Borders", "Amanda Schlitt", "Andrei Shynkarenka", "Andrew Nadel", "Anna Marissa Fetz", "Bradley Werner", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "Chito Arabaca", "David Garcia", "David Ting", "Debbie Celado", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Emily Ozanian", "Emma Joyce", "Erin Moulesong", "Fred Gulliford", "Ganesh Prabhu", "George Austen", "Goran Halvarsson", "Grace Cary", "Grace Sin", "Greg Grunston", "Guilherme Paz", "Jesper Bunch", "Jill Steinberg", "Justin Ferrese", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Kristin Hanafin", "Kristina Sanderson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Bodimeade", "Meher Jaynavula", "Nadia Husty", "Nestor Martinez", "Nick Jablonski", "Parthi Thanikachalam", "Phani Abburi", "Salman Arif", "Sara Wilcox", "Sneha Priyadarshni", "Sonia Luna", "Stephanie Robinson", "Subhabrat Padhi", "TJ McCormick", "Ted Murena"], "recAS1tQiWRlC5kw3": ["Alexandra Cazangiu", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "David Garcia", "David Ting", "Eddie Wong", "Edwin Guiza", "Ganesh Prabhu", "Grace Sin", "Jesper Bunch", "Jill Steinberg", "Kathleen Garwood", "Kristen Swenson", "Lisa Anderson", "Matt Bodimeade", "Subhabrat Padhi", "Ted Murena"], "recF5J0V6ABltJ0Sz": ["Andrew Nadel", "Bradley Werner", "Brian Cornett", "Brigit Bruning", "Casey Pennington", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "David Ting", "Denis Farias", "Erin Moulesong", "Fred Gulliford", "Jess Lovell", "Joanne Sin", "Kathleen Garwood", "Katy Martin", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Matt Dale", "Matt Siegel", "Meher Jaynavula", "Nestor Martinez", "Sarah Wyse", "Sonia Luna", "TJ McCormick", "Varun Kumar"], "rec1Xj6yOInIutrha": ["Alex Habib", "Andrew Nadel", "Bradley Werner", "Brigit Bruning", "Cathrine Jermiin", "Chito Arabaca", "Craig Stover", "Denis Farias", "Erin Moulesong", "Fred Gulliford", "Jennifer Morgan", "Jess Lovell", "Joanne Sin", "Katy Martin", "Kristen Swenson", "Kurt Lindsey", "Laura Hahn", "Lisa Anderson", "Matt Siegel", "Sarah Wyse", "TJ McCormick"], "rec8ycRJH1MDezIxq": ["Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sonia Luna", "Subhabrat Padhi", "Ted Murena"], "recwp4NdNA3bOfJms": ["Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sonia Luna", "Steve Yi", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "recdWMcr9EcweafM5": ["Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "David Ting", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "rece3O48PQKWeCxVw": ["Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "recnYjsb7cmtPm04U": ["Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "recxH9sh9YPAgxspR": ["Alexandra Cazangiu", "Andrei Shynkarenka", "Andrew Nadel", "Carlos Vargas", "Casey Pennington", "Cathrine Jermiin", "Charles Sundar", "David Garcia", "David Ting", "Denis Farias", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "recZHcI51m7YTW2By": ["Andrei Shynkarenka", "Brian Cornett", "Charles Sundar", "David Garcia", "Denis Farias", "Dominck Norwood", "Edwin Guiza", "Goran Halvarsson", "Jesper Bunch", "Kirdric Hill", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Subhabrat Padhi", "Vikas Jain"], "rechNEjxTipMDPgnN": ["Aaron Clanton", "Alexandra Cazangiu", "Allie DeBaere", "Andrew Nadel", "Brian Cornett", "Cathrine Jermiin", "Craig Stover", "Denis Farias", "Edwin Guiza", "Erin Moulesong", "Joanne Sin", "Katy Martin", "Kirdric Hill", "Laura Hahn", "Matt Dale", "Matt Siegel", "Matt Sussman", "Sonia Luna", "Varun Kumar"], "recUKrtRiKW4xIarq": ["Alex Habib", "Allie DeBaere", "Andrew Nadel", "Cathrine Jermiin", "Dave Horrigan", "Denis Farias", "Edwin Guiza", "Erin Moulesong", "Irina Rock-Gilbertson", "John George", "Josh Frickle", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Sarang Paraskar", "Steve Yi", "Subhabrat Padhi", "Tim Eschenauer"], "reclB8G2EonbDoyzH": ["Alexandra Cazangiu", "Andrew Nadel", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Nick Jablonski", "Ted Murena"], "rechdn7BHWUbph9it": ["Andrew Nadel", "Eddie Wong", "Erin Moulesong", "Kathleen Garwood", "Kristen Swenson", "Lisa Anderson"], "rechpqQDaguspJZ00": ["Andrew Nadel", "Eddie Wong", "Erin Moulesong", "Kathleen Garwood", "Kristen Swenson", "Lisa Anderson"], "recmZS3f510eUluMH": ["Andrew Nadel", "Eddie Wong", "Erin Moulesong", "Kathleen Garwood", "Kristen Swenson", "Lisa Anderson"], "recUQSia3812ZmOsg": ["Andrew Nadel", "Eddie Wong", "Erin Moulesong", "Kathleen Garwood", "Kristen Swenson", "Lisa Anderson"], "recdDi44XPzJ6eCuQ": ["Andrew Nadel", "Eddie Wong", "Erin Moulesong", "Kathleen Garwood", "Kristen Swenson", "Lisa Anderson"], "recy3SLJzhIwLG802": ["Andrew Nadel", "Eddie Wong", "Erin Moulesong", "Kathleen Garwood", "Kristen Swenson", "Lisa Anderson"], "rec1ClJvcgczWDr76": ["Alexandra Cazangiu", "Andrew Nadel", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Ted Murena"], "recBRxfl5JP39OhHo": ["Alexandra Cazangiu", "Andrew Nadel", "David Garcia", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Meher Jaynavula", "Parthi Thanikachalam", "Priscilla Tsang", "Subhabrat Padhi", "Ted Murena"], "recZeDf0DoAR3DSj1": ["Alexandra Cazangiu", "Andrew Nadel", "David Garcia", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Meher Jaynavula", "Parthi Thanikachalam", "Priscilla Tsang", "Subhabrat Padhi", "Ted Murena"], "recLmjHD0kIL7e0i6": ["Alexandra Cazangiu", "David Garcia", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Kathleen Garwood", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Meher Jaynavula", "Subhabrat Padhi", "Ted Murena"], "recufWUzZFJZjJvxe": ["Andrei Shynkarenka", "Brian Cornett", "Cathrine Jermiin", "Craig Stover", "David Garcia", "Denis Farias", "Dominck Norwood", "Goran Halvarsson", "Jesper Bunch", "Joanne Sin", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Matt Dale", "Matt Siegel", "Parthi Thanikachalam", "Phani Abburi", "Subhabrat Padhi", "Varun Kumar"], "recYY0jyxLPejMp0D": ["Alexandra Cazangiu", "Allie DeBaere", "Andrei Shynkarenka", "Brian Cornett", "Cathrine Jermiin", "Craig Stover", "David Garcia", "Denis Farias", "Dominck Norwood", "Goran Halvarsson", "Jesper Bunch", "Joanne Sin", "Katy Martin", "Kirdric Hill", "Kristen Swenson", "Laura Hahn", "Matt Dale", "Matt Siegel", "Matt Sussman", "Parthi Thanikachalam", "Phani Abburi", "Subhabrat Padhi", "Varun Kumar"], "rec1kQspwmLe1vuqX": ["Carlos Vargas", "Edwin Guiza", "Kathleen Garwood", "Kirdric Hill", "Laura Hahn", "Lisa Anderson", "Subhabrat Padhi"], "recie7dktiYIObzEy": ["Carlos Vargas", "Edwin Guiza", "Kathleen Garwood", "Kirdric Hill", "Laura Hahn", "Lisa Anderson", "Subhabrat Padhi"], "recE5NYC9qEuUxKKl": ["Andrei Shynkarenka", "Carlos Vargas", "David Garcia", "Derek Correia", "Edwin Guiza", "Irina Rock-Gilbertson", "Jesper Bunch", "Kirdric Hill", "Parthi Thanikachalam", "Phani Abburi", "Subhabrat Padhi"], "recTjwxER00dqa4rY": ["Alexandra Cazangiu", "Allie DeBaere", "David Garcia", "Ganesh Prabhu", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Matt Sussman", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Subhabrat Padhi", "Ted Murena"], "recnw4Vqk9oOcFg1p": ["Alexandra Cazangiu", "Allie DeBaere", "David Garcia", "Ganesh Prabhu", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Matt Sussman", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Subhabrat Padhi", "Ted Murena"], "recJl31P82BEaTpwa": ["Lisa Anderson", "Subhabrat Padhi"], "recVNj4qTwPNdRODl": ["Subhabrat Padhi"], "recnYKgUbP3rqF7Yt": ["Subhabrat Padhi"], "recuuwvZDu6M1Xyj7": ["Kathleen Garwood", "Subhabrat Padhi"], "rec9YuriA9761KVde": ["Kathleen Garwood", "Subhabrat Padhi"], "recjnPIFqPGXkFhvC": ["Alexandra Cazangiu", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Subhabrat Padhi", "Ted Murena"], "recLczakFQHnyikRW": ["Alexandra Cazangiu", "Andrei Shynkarenka", "Carlos Vargas", "Cathrine Jermiin", "David Garcia", "Denis Farias", "Eddie Wong", "Edwin Guiza", "Ganesh Prabhu", "Goran Halvarsson", "Jesper Bunch", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Meher Jaynavula", "Sonia Luna", "Subhabrat Padhi", "Swan Vilichay", "Ted Murena"], "recdk9ztSTITirVWP": ["David Ting", "Erin Moulesong", "Ganesh Prabhu", "Kathleen Garwood", "Laura Hahn", "Lisa Anderson", "Subhabrat Padhi"], "recUcKqe5gNVV58DJ": ["Alexandra Cazangiu", "Eddie Wong", "Erin Moulesong", "Ganesh Prabhu", "Kathleen Garwood", "Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Subhabrat Padhi", "Ted Murena"], "recMJZyfLx1uWS8MS": ["Cathrine Jermiin", "Erin Moulesong", "Jesper Bunch", "Subhabrat Padhi"], "reci87DhhAAD51JwC": ["Ahmed Harb", "Carlos Vargas", "David Garcia", "Goran Halvarsson", "Jesper Bunch", "Laura Hahn", "Lisa Anderson", "Meher Jaynavula", "Parthi Thanikachalam", "Phani Abburi", "Subhabrat Padhi", "Ted Murena"], "recSASyBkiRpUkcMw": ["Andrei Shynkarenka", "David Garcia", "Goran Halvarsson", "Jesper Bunch", "Meher Jaynavula", "Parthi Thanikachalam", "Subhabrat Padhi"], "recEY66rv1mbq9Qcg": ["Benji Baer", "Denis Farias", "Jennifer Morgan", "Joanne Sin", "Kristen Swenson", "Laura Hahn", "Matt Siegel", "Sarah Wyse", "Sarang Paraskar", "TJ McCormick"], "recENiXRLjfbb0FrQ": ["Andrei Shynkarenka", "Carlos Vargas", "Goran Halvarsson", "Jesper Bunch"], "rectopOYkYU9SF4xv": ["Carlos Vargas", "Goran Halvarsson", "Jesper Bunch"], "rec2FaC7p2nWzQQri": ["Goran Halvarsson", "Jesper Bunch"], "recTdr5R9WtVYOT6H": ["Andrei Shynkarenka", "Carlos Vargas", "Goran Halvarsson", "Jesper Bunch"], "recRMaRxc50ie2AdX": ["Goran Halvarsson", "Jesper Bunch"], "recQY1xjLuFjuBAro": ["Goran Halvarsson", "Jesper Bunch"], "recmyzu7nTuwP7MvP": ["Carlos Vargas"], "rec9CX7AR4y1SlTOA": ["Alexandra Cazangiu"], "recKWXuBs91xITo5O": ["Alex Habib"], "recmTuztdlXox3sX8": ["Erin Moulesong"], "recFkJLLgKtroesGC": ["Erin Moulesong"], "recBedTb4okSfQ6gc": ["Jesper Bunch"], "recS5p38vaWklBLdO": ["Jesper Bunch"], "reciLFmPane84YUyn": ["Jesper Bunch"], "rectjto8DRxy5VArg": ["Jesper Bunch"], "recLSLteP6NiM4rd5": ["Jesper Bunch"], "recjg7zO8CwFrzihE": ["Jesper Bunch"], "reciwx4IhLkRxHIt4": ["Jesper Bunch"], "rec7RJAXGnYZ9yrbT": ["Jesper Bunch"], "rec5yT9Dq0VnCwr42": ["Jesper Bunch"]}; // People-tab Meetings links: explicit per-person attendance
const PERSON_INFO = {"Liz Young": {"team": "Chartis", "reps": [], "country": ""}, "Andrea Sanchez": {"team": "Globant", "reps": [], "country": ""}, "Sandeep Dave": {"team": "CBRE D&T", "reps": [], "country": ""}, "Matt Bodimeade": {"team": "CBRE DM", "reps": [], "country": ""}, "Lit Kris": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Singapore"}, "Leah King": {"team": "CBRE Marketing", "reps": ["Campaigns"], "country": ""}, "Chito Arabaca": {"team": "CBRE Marketing", "reps": ["Creative"], "country": ""}, "Nathan Webster": {"team": "CBRE Marketing", "reps": ["Creative"], "country": ""}, "George Austen": {"team": "CBRE DM", "reps": [], "country": ""}, "Charles Sundar": {"team": "CBRE D&T", "reps": [], "country": ""}, "Jolanda Carroll": {"team": "CBRE D&T", "reps": [], "country": ""}, "Andrew Nadel": {"team": "CBRE DM", "reps": [], "country": ""}, "Bradley Werner": {"team": "CBRE Marketing", "reps": ["Content"], "country": ""}, "Kirdric Hill": {"team": "CBRE D&T", "reps": [], "country": ""}, "Jacek Smaczny": {"team": "Globant", "reps": [], "country": ""}, "Yadi Venegas": {"team": "CBRE Marketing", "reps": ["REI"], "country": "TCC"}, "Matt Sussman": {"team": "Chartis", "reps": [], "country": ""}, "Kim Verdonck": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "Belgium & Luxembourg"}, "Sabine Madaus": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "Germany, Switzerland"}, "Shannon Keegan": {"team": "CBRE Marketing", "reps": ["Client Office"], "country": ""}, "Wendy Sherwood": {"team": "Corp Comms", "reps": [], "country": ""}, "Einar Schiefloe": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "UKI, CE"}, "Subhabrat Padhi": {"team": "CBRE D&T", "reps": [], "country": ""}, "Carlos Becil": {"team": "CBRE Marketing", "reps": ["Industrious"], "country": ""}, "Sarah Wyse": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE", "Brand", "Core Leadership"], "country": ""}, "John Marcone": {"team": "CBRE Marketing", "reps": ["Talent/Careers"], "country": ""}, "Meher Jaynavula": {"team": "CBRE D&T", "reps": [], "country": ""}, "TJ McCormick": {"team": "CBRE Marketing", "reps": ["Creative"], "country": ""}, "Casey Pennington": {"team": "CBRE DM", "reps": [], "country": ""}, "Justin Ferrese": {"team": "CBRE DM", "reps": [], "country": ""}, "Edwin Guiza": {"team": "Globant", "reps": [], "country": ""}, "Zi Zheng": {"team": "Globant", "reps": [], "country": ""}, "Ai Otsu": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Japan"}, "Sarang Paraskar": {"team": "Globant", "reps": [], "country": ""}, "Kim Stutterheim": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "Netherlands"}, "Cora Lai": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Hong Kong"}, "Rishi Bhuchar": {"team": "Investor Council", "reps": ["Private Client Segment", "Institutional Segment"], "country": "UKI, CE"}, "Federico De CristÃ³faro": {"team": "Globant", "reps": [], "country": ""}, "Jess McIntyre": {"team": "Corp Comms", "reps": [], "country": ""}, "Brigit Bruning": {"team": "CBRE Marketing", "reps": ["Brand"], "country": ""}, "Matt Siegel": {"team": "Globant", "reps": [], "country": ""}, "Inci Gecekusu": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Middle East"}, "Katy Martin": {"team": "Globant", "reps": [], "country": ""}, "Jennifer Morgan": {"team": "CBRE Marketing", "reps": ["Content", "Core Leadership"], "country": ""}, "Vijayendra Agarwal": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan", "Core Leadership"], "country": "India"}, "Stephen Smith": {"team": "CBRE Marketing", "reps": ["Talent/Careers"], "country": ""}, "Neil Pendleton": {"team": "Investor Council", "reps": ["Institutional Segment", "Private Client Segment"], "country": "US-CAN & LATAM"}, "Kenji Tomita": {"team": "Globant", "reps": [], "country": ""}, "Salman Arif": {"team": "CBRE DM", "reps": [], "country": ""}, "James Hodson": {"team": "Corp Comms", "reps": ["BOE"], "country": ""}, "Eric Xiao": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan", "Core Leadership"], "country": "North Asia"}, "Goran Halvarsson": {"team": "Globant", "reps": [], "country": ""}, "Kristen Swenson": {"team": "CBRE DM", "reps": [], "country": ""}, "Derek Correia": {"team": "Sitecore", "reps": [], "country": ""}, "Tim Kemp": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Pacific"}, "Brandon Forde": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "US-CAN & LATAM"}, "Jade Harper": {"team": "CBRE Marketing", "reps": ["Talent/Careers"], "country": ""}, "Joanne Sin": {"team": "Globant", "reps": [], "country": ""}, "Grace Sin": {"team": "CBRE DM", "reps": [], "country": ""}, "Joseph Servia": {"team": "CBRE DM", "reps": [], "country": ""}, "Emily Ozanian": {"team": "CBRE DM", "reps": [], "country": ""}, "Kurt Lindsey": {"team": "CBRE Marketing", "reps": ["Content"], "country": ""}, "Henry Chin": {"team": "CBRE Research", "reps": ["Research"], "country": ""}, "Hannah Jeon": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Korea"}, "Pablo Bugani": {"team": "Globant", "reps": [], "country": ""}, "Fred Gulliford": {"team": "CBRE Marketing", "reps": ["Brand"], "country": ""}, "Barnabas Toth": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "CEE"}, "Greg Grunston": {"team": "CBRE Marketing", "reps": ["Content"], "country": ""}, "Rosy Luo": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "China"}, "Deborah Stambaugh": {"team": "CBRE Marketing", "reps": ["T&T", "Core Leadership"], "country": ""}, "Max Simchowitz": {"team": "CBRE D&T", "reps": ["Research"], "country": ""}, "Tim Eschenauer": {"team": "Chartis", "reps": [], "country": ""}, "Lindsay Wester": {"team": "Corp Comms", "reps": [], "country": ""}, "Federica Vangelisti": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "Italy"}, "Jesse Sellers": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "US-CAN & LATAM"}, "Julie Whelan": {"team": "CBRE Research", "reps": ["Research"], "country": "Occupier"}, "Nestor Martinez": {"team": "CBRE DM", "reps": [], "country": ""}, "Emma Joyce": {"team": "CBRE DM", "reps": [], "country": ""}, "Leslie Motiwalla": {"team": "CBRE Marketing", "reps": ["BOE", "Core Leadership"], "country": ""}, "Tess Peterson": {"team": "CBRE Marketing", "reps": ["Client Office", "Enterprise / Client Office"], "country": ""}, "Dominick Norwood": {"team": "Globant", "reps": [], "country": ""}, "Sneha Priyadarshni": {"team": "CBRE D&T", "reps": [], "country": ""}, "Kanishk Verghese": {"team": "CBRE Marketing", "reps": ["Content"], "country": "APAC"}, "Sara Wilcox": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": ""}, "Kevin Moosbrugger": {"team": "Investor Council", "reps": ["Institutional Segment", "Private Client Segment"], "country": "US-CAN & LATAM"}, "Dominck Norwood": {"team": "", "reps": [], "country": ""}, "Camy Tan": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "APAC & MENAT"}, "Bernadette Keane": {"team": "CBRE Marketing", "reps": ["T&T"], "country": ""}, "Jennifer Johnson": {"team": "Investor Council", "reps": ["Private Client Segment", "Institutional Segment"], "country": "US-CAN & LATAM"}, "Ted Murena": {"team": "CBRE DM", "reps": [], "country": ""}, "Alissa Van Der Westhuizen": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": "US"}, "Julie Cooper": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "UK & I"}, "Frank McCafferty": {"team": "Occupier Council", "reps": ["Advisory Accounts"], "country": "US-CAN & LATAM"}, "Varun Kumar": {"team": "CBRE D&T", "reps": [], "country": ""}, "Natalie Dahl": {"team": "Investor Council", "reps": ["Institutional Segment"], "country": "US-CAN & LATAM"}, "Parthi Thanikachalam": {"team": "CBRE D&T", "reps": [], "country": ""}, "Eddie Wong": {"team": "CBRE DM", "reps": [], "country": ""}, "Kristin Hanafin": {"team": "CBRE DM", "reps": [], "country": ""}, "Debbie Celado": {"team": "CBRE Marketing", "reps": ["Talent/Careers", "Core Leadership"], "country": ""}, "Buse Beysungu": {"team": "CBRE Marketing", "reps": ["Content"], "country": "UKI / CE"}, "David Ting": {"team": "CBRE DM", "reps": [], "country": ""}, "Kylie Johnston": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Pacific"}, "Moichi Watanabe": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan", "Core Leadership"], "country": "Japan"}, "Nico Bonanno": {"team": "CBRE Marketing", "reps": ["Talent/Careers"], "country": ""}, "Michelle Crecca": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN", "Core Leadership"], "country": "US, Canada"}, "Mitchell Lee": {"team": "Globant", "reps": [], "country": ""}, "Raheel Goheer": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "US-CAN & LATAM"}, "Christy Chan": {"team": "Investor Council", "reps": ["Private Client Segment", "Institutional Segment"], "country": "APAC & MENAT"}, "Thomas Hung": {"team": "Corp Comms", "reps": [], "country": ""}, "Marwa Khalife": {"team": "Globant", "reps": [], "country": ""}, "Kasia Dziewulska": {"team": "CBRE Research", "reps": ["Research"], "country": ""}, "Denis Farias": {"team": "Globant", "reps": [], "country": ""}, "Kevin Aussef": {"team": "Investor Council", "reps": ["Private Client Segment"], "country": "US-CAN & LATAM"}, "Jill Steinberg": {"team": "CBRE DM", "reps": [], "country": ""}, "Tasos Vezyridis": {"team": "CBRE Research", "reps": ["Research"], "country": "UK & I, CE"}, "Georgie Cloke": {"team": "CBRE Marketing", "reps": ["Talent/Careers"], "country": ""}, "Jules Allen": {"team": "Chartis", "reps": [], "country": ""}, "Allie DeBaere": {"team": "Chartis", "reps": [], "country": ""}, "Katie Newcombe": {"team": "Corp Comms", "reps": ["Advisory - US, CAN"], "country": "Canada"}, "Ryan Grainger": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "US-CAN & LATAM"}, "Steve Yi": {"team": "CBRE D&T", "reps": ["International"], "country": ""}, "Grace Cary": {"team": "CBRE Marketing", "reps": ["BOE"], "country": "FM, Critical Infrastructure"}, "Emily Wilson": {"team": "CBRE Marketing", "reps": ["REI"], "country": "CBRE IM"}, "Andrei Shynkarenka": {"team": "Globant", "reps": [], "country": ""}, "Carlos Vargas": {"team": "Globant", "reps": [], "country": ""}, "Ada Choi": {"team": "CBRE Research", "reps": ["Research"], "country": "APAC"}, "Scott Schnuckel": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "US-CAN & LATAM"}, "Swan Vilichay": {"team": "Globant", "reps": [], "country": ""}, "Melvin Lin": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Singapore"}, "Karen Lau": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Hong Kong"}, "Steve Iaco": {"team": "Corp Comms", "reps": [], "country": ""}, "Priscilla Tsang": {"team": "", "reps": [], "country": ""}, "Greg Hyland": {"team": "Investor Council", "reps": ["Private Client Segment", "Institutional Segment"], "country": "APAC & MENAT"}, "Aldo Martinez": {"team": "Sitecore", "reps": [], "country": ""}, "Amanda Schlitt": {"team": "CBRE Marketing", "reps": ["BOE"], "country": "Property Management"}, "Charinya Youngprapakorn": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Thailand"}, "Ella Bahen": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Pacific"}, "Ricky Hernden": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": "Canada"}, "John George": {"team": "CBRE D&T", "reps": [], "country": ""}, "Andrew Gregory": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": "Canada"}, "Nadia Husty": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": "US"}, "Anita Chen": {"team": "Globant", "reps": [], "country": ""}, "Nicole LaRusso": {"team": "CBRE Research", "reps": ["Research"], "country": "US"}, "Brittany Warnica": {"team": "CBRE Marketing", "reps": ["Content"], "country": ""}, "Reuben Tay": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan", "Enterprise / Client Office"], "country": "Singapore"}, "Guilherme Paz": {"team": "CBRE Marketing", "reps": ["Talent/Careers"], "country": ""}, "Josh Frickle": {"team": "Sitecore", "reps": [], "country": ""}, "Cameron Pilkey": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": ""}, "Matt Dale": {"team": "Globant", "reps": [], "country": ""}, "Helina Hein": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Dubai"}, "Josh Bank": {"team": "Occupier Council", "reps": ["Advisory Accounts"], "country": "US-CAN & LATAM"}, "Nick Hendy": {"team": "Investor Council", "reps": ["Private Client Segment", "Institutional Segment"], "country": "UKI, CE"}, "Ganesh Prabhu": {"team": "CBRE DM", "reps": [], "country": ""}, "Cathrine Jermiin": {"team": "Globant", "reps": [], "country": ""}, "Kristina Sanderson": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": "US"}, "Craig Stover": {"team": "CBRE DM", "reps": [], "country": ""}, "James Manderville": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "US-CAN & LATAM"}, "Lisa Anderson": {"team": "CBRE DM", "reps": [], "country": ""}, "Vikas Jain": {"team": "CBRE D&T", "reps": [], "country": ""}, "Julie Ennis": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "UKI, CE"}, "Benji Baer": {"team": "CBRE Marketing", "reps": ["Core Leadership"], "country": ""}, "Alexandra Cazangiu": {"team": "CBRE DM", "reps": [], "country": ""}, "Anna Esteban Muela": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "UKI, CE"}, "Kathleen Garwood": {"team": "CBRE DM", "reps": [], "country": ""}, "Katherine Reichelt": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "APAC & MENAT"}, "Irina Rock-Gilbertson": {"team": "Sitecore", "reps": [], "country": ""}, "Aaron Clanton": {"team": "Globant", "reps": [], "country": ""}, "Raj Somchand": {"team": "Investor Council", "reps": ["Private Client Segment", "Institutional Segment"], "country": "UKI, CE"}, "Jill Luna": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": ""}, "Ahmed Harb": {"team": "Globant", "reps": [], "country": ""}, "Geoff Gaviria": {"team": "CBRE Marketing", "reps": ["REI"], "country": "CBRE IM"}, "Brianna Paul": {"team": "Globant", "reps": [], "country": ""}, "Tom Gaffney": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "APAC & MENAT"}, "Jess Lovell": {"team": "CBRE Marketing", "reps": ["Creative"], "country": ""}, "Sarah Al Attar": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Bahrain"}, "Alex Habib": {"team": "Globant", "reps": [], "country": ""}, "Stephanie Robinson": {"team": "CBRE DM", "reps": [], "country": ""}, "Emily Niguidula": {"team": "Occupier Council", "reps": ["Enterprise / Client Office"], "country": "US-CAN & LATAM"}, "Bonnie Ang": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Singapore"}, "Celine Savy": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "France"}, "Yvonne Ehinger": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "Nordics"}, "David Garcia": {"team": "CBRE D&T", "reps": [], "country": ""}, "Ngoc Khanh Ha Dinh": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "Vietnam"}, "Nick Jablonski": {"team": "CBRE Marketing", "reps": ["Client Office", "Core Leadership"], "country": ""}, "Kiera Fryar": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan", "Core Leadership"], "country": "Pacific"}, "Katie Peters": {"team": "Corp Comms", "reps": ["BOE"], "country": ""}, "Crystal Palar": {"team": "Investor Council", "reps": ["Private Client Segment", "Institutional Segment"], "country": "APAC & MENAT"}, "Phani Abburi": {"team": "CBRE D&T", "reps": [], "country": ""}, "Erin Moulesong": {"team": "CBRE DM", "reps": [], "country": ""}, "Rachel Labowe": {"team": "CBRE Marketing", "reps": ["REI"], "country": "CBRE IM"}, "Robson Melendre": {"team": "CBRE Marketing", "reps": ["Advisory - LATAM"], "country": "LATAM"}, "Amanda Borders": {"team": "CBRE Marketing", "reps": ["BOE", "Enterprise / Client Office"], "country": "FM, Critical Infrastructure"}, "Anna Marissa Fetz": {"team": "CBRE Marketing", "reps": ["Advisory - US, CAN"], "country": "US"}, "Laura Hahn": {"team": "CBRE DM", "reps": [], "country": ""}, "Dinah Ng": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan", "Enterprise / Client Office"], "country": "Singapore"}, "Tian Shen": {"team": "CBRE Marketing", "reps": ["Advisory - APAC, MENAT & Japan"], "country": "China"}, "Jesper Bunch": {"team": "Globant", "reps": [], "country": ""}, "Whitney Davidson": {"team": "Corp Comms", "reps": [], "country": ""}, "Chris Gardener": {"team": "Investor Council", "reps": ["Private Client Segment", "Institutional Segment"], "country": "UKI, CE"}, "Darin Mellot": {"team": "CBRE Research", "reps": ["Research"], "country": ""}, "Sonia Luna": {"team": "Globant", "reps": [], "country": ""}, "Cari Drysdale": {"team": "CBRE Marketing", "reps": ["T&T"], "country": ""}, "Izaskun Excurra Gascue": {"team": "CBRE Marketing", "reps": ["Advisory - UK&I, CE"], "country": "Iberia"}, "Brian Cornett": {"team": "CBRE D&T", "reps": [], "country": ""}, "Sev Ziya": {"team": "CBRE Marketing", "reps": ["T&T"], "country": ""}, "Luis Bustamante": {"team": "Globant", "reps": [], "country": ""}, "Dave Horrigan": {"team": "Sitecore", "reps": [], "country": ""}, "Sanket Raina": {"team": "Corp Comms", "reps": [], "country": "India"}, "Phoebe Tran": {"team": "Globant", "reps": [], "country": ""}}; // People tab: team, representations, country/LOB
const MARKETING_TEAMS = ["CBRE Marketing", "CBRE Research", "Corp Comms"];
function displayName(p) {
  const c = (PERSON_INFO[p] || {}).country;
  return p + (c ? " (" + c + ")" : "");
}
function marketingRepsOf(p) {
  const r = (PERSON_INFO[p] || {}).reps || [];
  return r.length ? r : ["Other Marketing"];
}
function peopleFor(m) {
  const s = new Set(m.organizer);
  (MEETING_PEOPLE[m.id] || []).forEach(p => s.add(p)); // explicit People-tab attendee tags (authoritative)
  (m.attendees || []).forEach(g => (GROUP_MEMBERS[g] || []).forEach(p => s.add(p)));
  m.audience.forEach(a => (AUD_PEOPLE[a] || []).forEach(p => s.add(p)));
  return s;
}
let personFilter = "";

// --- TIME COMMITMENT ---
// Until Airtable has a real "Feedback Time Needed" field, assume async feedback
// after a meeting with a feedback doc costs ~30 min per person.
const FEEDBACK_EFFORT_MIN = 30;
function cadencePerMonth(m) {
  if (!m.cadence || !m.cadence.startsWith("Recurring")) return 0;
  if (m.cadence.includes("weekly")) return 4;
  if (m.cadence.includes("monthly")) return 1;
  if (m.cadence.includes("quarterly")) return 1 / 3;
  return 1;
}
function commitmentLabel(m) {
  const dur = m.duration || 0;
  const fb = (m.feedback && m.feedback.length) ? FEEDBACK_EFFORT_MIN : 0;
  const per = cadencePerMonth(m);
  const bits = [];
  if (dur) bits.push(dur + " min");
  if (fb) bits.push("+~" + fb + " min feedback after");
  if (per) {
    const monthly = Math.round((dur + fb) * per / 60 * 10) / 10;
    bits.push(m.cadence.replace("Recurring ", "") + (dur ? " (~" + monthly + "h/mo)" : ""));
  }
  const sq = SERIES.get(m.id);
  if (sq && dur && !per) {
    bits.push("series ~" + Math.round((dur + fb) * sq.of / 60 * 10) / 10 + "h total");
  }
  return bits.join(" \u00b7 ");
}
function personMinutes(person, meetings) {
  let mtg = 0, fb = 0;
  meetings.forEach(m => {
    mtg += m.duration || 45; // assume 45 when unset
    if (owesFeedback(person, m)) fb += FEEDBACK_EFFORT_MIN;
  });
  return { mtg, fb };
}

// Order-of-operations within a sub-topic: the delivery workflow runs
// questionnaire/workshop -> content+wireframe proposals (R1 -> R2) -> final handover ->
// design reviews (informal -> R1 -> R2) -> sign-off -> tech handover.
function stageRank(title) {
  const s = title.toLowerCase();
  const round = /r\s?2|v\s?2/.test(s) ? 1 : 0; // second round after first
  if (/questionnaire|workshop|working session|kick-?off|audit|benchmark/.test(s)) return 10 + round;
  if (/wireframes? (proposal|review)|content, strategy/.test(s) && !/design review/.test(s)) return 20 + round;
  if (/preview handover/.test(s)) return 25 + round;
  if (/final handover/.test(s)) return 30;
  if (/design review.*informal/.test(s)) return 40;
  if (/design review/.test(s)) return 41 + round;
  if (/final sign-?off|sign-?off/.test(s)) return 50;
  if (/handover documentation|tech team/.test(s)) return 55;
  return 35 + round; // presentations, feedback reviews, misc land mid-flow
}

// --- MEETING SERIES ---
// Related sessions ("Interlinking Strategy", "... Presentation R2", "... Feedback Review")
// share a normalized title stem; the badge shows position within that series.
function seriesKey(title) {
  let s = title.toLowerCase();
  s = s.replace(/\br\s?\d+\b/g, " ").replace(/\bv\s?\d+\b/g, " ");           // R1, v2
  s = s.replace(/\b(presentation|review|feedback|initial|working|session|sessions|workshop|share|recommendation|consolidation|alignment)\b/g, " ");
  s = s.replace(/[^a-z0-9& ]/g, " ").replace(/\s+/g, " ").trim();
  s = s.split(" ").map(w => w.length > 3 && w.endsWith("s") ? w.slice(0, -1) : w).join(" "); // concepts==concept
  return s;
}
const SERIES_GROUPS = new Map(); // seriesKey -> chronologically ordered meetings (only real series, 2+)
const SERIES_KEY_OF = new Map();  // meeting id -> seriesKey
const SERIES = (() => {
  const map = new Map();
  MEETINGS.filter(m => m.type !== "OOO").forEach(m => {
    const k = seriesKey(m.title);
    if (!map.has(k)) map.set(k, []);
    map.get(k).push(m);
  });
  const pos = new Map();
  map.forEach((arr, k) => {
    if (arr.length < 2) return;
    arr.sort((a, b) => {
      const da = displayDate(a) || "9998", db = displayDate(b) || "9998";
      if (da !== db) return da.localeCompare(db);
      return (stageRank(a.title) - stageRank(b.title)) || a.title.localeCompare(b.title, undefined, { numeric: true });
    });
    arr.forEach((m, i) => { pos.set(m.id, { n: i + 1, of: arr.length }); SERIES_KEY_OF.set(m.id, k); });
    SERIES_GROUPS.set(k, arr);
  });
  return pos;
})();
function seriesDisplayName(arr) {
  // longest common prefix of the session titles, tidied up
  let p = arr[0].title;
  arr.forEach(m => { while (p && !m.title.toLowerCase().startsWith(p.toLowerCase())) p = p.slice(0, -1); });
  p = p.replace(/[\s\-â€“:]+$/, "").replace(/\b(v|r)$/i, "").replace(/[\s\-â€“:]+$/, "");
  return p.length >= 6 ? p : arr[0].title;
}

// Stakeholder groups relevant to Kristen/leadership
const KRISTEN_ORGANIZERS = ["Kristen Swenson", "Erin Moulesong", "Alex Habib", "Andrea Sanchez"];
const KRISTEN_AUDIENCES = ["Kristen + John G", "Sandeep + Benji", "CBRE DM"];

// â”€â”€â”€ HELPERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€

function displayDate(m) { return m.actual || m.target || ""; }

function formatDateLabel(d) {
  if (!d) return "";
  const dt = new Date(d + "T00:00:00");
  return dt.toLocaleDateString("en-US", { month: "short", day: "numeric" });
}

function getWeekDates(baseDate) {
  const d = new Date(baseDate);
  const day = d.getDay(); // 0 = Sun
  const monday = new Date(d);
  monday.setDate(d.getDate() - (day === 0 ? 6 : day - 1));
  return Array.from({ length: 5 }, (_, i) => {
    const dt = new Date(monday);
    dt.setDate(monday.getDate() + i);
    return dt;
  });
}

function isoDate(dt) {
  return dt.toISOString().slice(0, 10);
}

function today() { return isoDate(new Date()); }

// â”€â”€â”€ FILTER STATE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€

let activeTab = "myview";
let audienceFilter = "";
let groupFilter = "";
let quickFilter = "all";
let weekOffset = 0; // weeks from current
let monthOffset = 0; // months from July 2026

const BASE_WEEK = new Date(today() + "T00:00:00"); // current week
const BASE_MONTH = { year: BASE_WEEK.getFullYear(), month: BASE_WEEK.getMonth() }; // current month

// Unique audiences
const allAudiences = [...new Set(MEETINGS.flatMap(m => m.audience))].sort();

// Stakeholder groups from Groups table (key ones)
const GROUPS = ["CBRE DM", "CBRE D&T", "Globant", "Chartis", "Sitecore", "CBRE Marketing", "CBRE Research", "Corp Comms", "Advisory - APAC, MENAT & Japan", "Advisory - LATAM", "Advisory - UK&I, CE", "Advisory - US, CAN", "Advisory Accounts", "BOE", "Brand", "Campaigns", "Client Office", "Content", "Core Leadership", "Creative", "Enterprise / Client Office", "Industrious", "Institutional Segment", "International", "Investor Council", "Occupier Council", "Private Client Segment", "REI", "Research", "T&T", "Talent/Careers"];

// Group â†’ audience mapping
const GROUP_AUDIENCE_MAP = {
  "Accountable Executives": ["Sandeep + Benji", "Benji", "Kristen + John G"],
  "Steerco": ["CBRE DM", "D&T", "Globant"],
  "Kristen's Directs": ["CBRE DM"],
  "Project Managers": ["CBRE DM", "D&T", "Globant"],
  "Key Marketing Stakeholder": ["Select Marketing Leads"],
  "CBRE Digital Marketing": ["CBRE DM"],
  "CBRE Marketing": ["Select Marketing Leads", "CBRE DM"],
  "CBRE Marketing D&T": ["D&T"],
  "Globant GUT": ["Globant"],
  "Globant Strategy Team": ["Globant"],
  "Globant Tech Team": ["D&T", "Globant"],
  "Globant UX team": ["Globant"],
  "Chartis": ["Chartis"],
  "Chartis SEO": ["Chartis"],
  "Chartis Analytics": ["Chartis"],
  "Sitecore": ["Sitecore"],
};

function filteredMeetings() {
  return MEETINGS.filter(m => {
    if (m.status === "Completed") return false; // completed meetings are hidden from all views
    // Visibility rule (Andrew 7/22 rev): Marketing STAKEHOLDER views are exec-only;
    // DM/D&T/vendor (project team) people and groups see everything, as do unfiltered views.
    const stakeholderPerson = personFilter && !CORE_GROUPS.includes(PERSON_TEAM[personFilter] || "");
    const stakeholderGroup = groupFilter && !CORE_GROUPS.includes(groupFilter);
    if ((stakeholderPerson || stakeholderGroup) && !m.exec) return false;
    if (quickFilter === "exec" && !m.exec) return false;
    if (quickFilter === "upcoming") {
      const d = displayDate(m);
      if (!d || d < today()) return false;
    }
    if (personFilter && !peopleFor(m).has(personFilter)) return false;
    if (groupFilter) {
      const members = TEAM_MEMBERS[groupFilter] || [];
      const ppl = peopleFor(m);
      if (!members.some(p => ppl.has(p))) return false;
    }
    return true;
  });
}

// â”€â”€â”€ BADGE HELPERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€

function statusBadge(m) {
  if (m.type === "OOO") return `<span class="badge badge-ooo">OOO</span>`;
  if (m.status === "Completed") return `<span class="badge badge-completed">Completed</span>`;
  if (m.status === "Scheduled") return `<span class="badge badge-scheduled">Scheduled</span>`;
  if (m.status === "Waiting for attendee list") return `<span class="badge badge-waiting">Pending</span>`;
  if (m.cadence && m.cadence.startsWith("Recurring")) return `<span class="badge badge-recurring">Recurring</span>`;
  return "";
}

function execBadge(m) {
  return m.exec ? `<span class="badge badge-exec">Exec</span>` : "";
}

function priorityBadge(m) {
  if (m.priority === "High") return `<span class="badge badge-high">High</span>`;
  return "";
}

// â”€â”€â”€ VIEWS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€

function renderOverview() {
  const meetings = filteredMeetings();
  const total = meetings.length;
  const execCount = meetings.filter(m => m.exec).length;
  const completedCount = MEETINGS.filter(m => m.status === "Completed").length;
  const upcomingCount = meetings.filter(m => { const d = displayDate(m); return d && d >= today(); }).length;

  // Group by workstream topic, then sub-topic cluster; sequence numbers are
  // chronological within the workstream (completed sessions keep their early numbers).
  const t = today();
  const UNTAGGED = "No Workstream Assigned";
  const groups = new Map();
  meetings.forEach(m => {
    const entries = (m.topicMap && m.topicMap.length) ? m.topicMap : [{ topic: "", subtopic: "" }];
    entries.forEach(e => {
      const key = e.topic || UNTAGGED;
      if (!groups.has(key)) groups.set(key, []);
      groups.get(key).push(Object.assign({}, m, { subtopic: e.subtopic || "" }));
    });
  });
  // Done = explicitly Completed, or actually HELD in the past. A passed target
  // date is a slipped meeting, not a done one â€” it stays visible as upcoming.
  const isDone = m => m.status === "Completed" || (m.actual && m.actual < t);
  const slipped = m => !isDone(m) && !m.actual && m.target && m.target < t;
  const byDate = (a, b) => (displayDate(a) || "9999").localeCompare(displayDate(b) || "9999");
  const byTitle = (a, b) => a.title.localeCompare(b.title, undefined, { numeric: true, sensitivity: "base" });
  const chrono = (a, b) => {
    const da = displayDate(a) || "9998", db = displayDate(b) || "9998";
    return da !== db ? da.localeCompare(db) : byTitle(a, b);
  };
  const seq = SERIES; // series-based numbering (session N of M within a related-meeting series)
  // Display order inside a workstream: dated upcoming -> TBD (natural title order) -> completed
  const rank = m => isDone(m) ? 2 : (displayDate(m) ? 0 : 1);
  const dispSort = (a, b) => {
    const ra = rank(a), rb = rank(b);
    if (ra !== rb) return ra - rb;
    if (ra === 0) return byDate(a, b) || (stageRank(a.title) - stageRank(b.title));
    if (ra === 1) return (stageRank(a.title) - stageRank(b.title)) || byTitle(a, b);
    return byDate(b, a);
  };
  groups.forEach(arr => arr.sort(dispSort));
  const nextDate = arr => {
    const ds = arr.filter(m => !isDone(m)).map(m => displayDate(m)).filter(Boolean);
    return ds.length ? ds.sort()[0] : "9998";
  };
  // Active = work in flight (sessions already held, or next session within 2 weeks).
  // Upcoming = workstream hasn't really started yet.
  const horizon = (() => { const d = new Date(t + "T00:00:00"); d.setDate(d.getDate() + 14); return isoDate(d); })();
  const isActiveWs = arr => arr.some(isDone) || (nextDate(arr) !== "9998" && nextDate(arr) <= horizon);
  const TOPIC_ORDER = ["Information Architecture, Sitemap & Navigation", "Design System & Brand application", "Homepage & Base Pages", "Services", "People", "Offices & Geohubs", "About Us & PR", "Insights & Research", "Careers", "Listings Experience", "Search", "Authenticated Experience & Personalization", "Authoring Experience", "Content creation & migration", "Launch Planning (US & International)", "Go-live Prep & UAT", "KPI Measurements", "Sprint Demo"];
  const tRank = n => { const i = TOPIC_ORDER.indexOf(n); return i === -1 ? 99 : i; };
  const sections = [...groups.entries()].sort((a, b) => {
    if (a[0] === UNTAGGED) return 1;
    if (b[0] === UNTAGGED) return -1;
    const aa = isActiveWs(a[1]), ba = isActiveWs(b[1]);
    if (aa !== ba) return aa ? -1 : 1;
    return tRank(a[0]) - tRank(b[0]);
  });

  const renderCard = m => {
    const done = isDone(m);
    const dd = displayDate(m);
    const isActual = !!m.actual;
    const span = meetingSpan(m);
    const slip = slipped(m);
    const dateLabel = span ? `${formatDateLabel(span.start)} \u2013 ${formatDateLabel(span.end)}` : (dd ? `${isActual ? "" : (slip ? "Target passed: " : "Target: ")}${formatDateLabel(dd)}` : "Date TBD");
    const sq = seq.get(m.id);
    const audHtml = m.audience.length
      ? `<div class="mc-audience">${m.audience.map(a => `<span class="audience-chip">${a}</span>`).join("")}</div>`
      : "";
    const orgHtml = m.organizer.length
      ? `<div class="mc-organizer">Organizer: ${m.organizer.join(", ")}</div>`
      : "";
    return `<div class="meeting-card${done ? " done-card" : ""}" data-mid="${m.id}">
      <div class="mc-header">
        <div class="mc-title">${m.title}</div>
        <div class="badges">${sq ? `<span class="badge badge-seq">Session ${sq.n} of ${sq.of}</span>` : ""}${execBadge(m)}${priorityBadge(m)}${statusBadge(m)}</div>
      </div>
      <div class="mc-meta">
        <span class="mc-meta-item">
          <svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg">
            <rect x="1" y="2" width="8" height="7" rx="1" stroke="currentColor" stroke-width="1.2"/>
            <path d="M3 1v2M7 1v2M1 5h8" stroke="currentColor" stroke-width="1.2" stroke-linecap="round"/>
          </svg>
          ${dateLabel}
        </span>
        ${commitmentLabel(m) ? `<span class="mc-meta-item">&#9201; ${commitmentLabel(m)}</span>` : (m.cadence && m.cadence !== "One-time" ? `<span class="mc-meta-item">${m.cadence}</span>` : "")}
        ${m.feedback && m.feedback.length ? `<span class="mc-meta-item" style="color: var(--accent); font-weight:600;">&#128279; Feedback doc</span>` : ""}
      </div>
      ${m.purpose ? `<div class="mc-purpose">${m.purpose.replace(/</g, "&lt;").slice(0, 220)}${m.purpose.length > 220 ? "\u2026" : ""}</div>` : ""}
      ${(() => { const lead = [...peopleFor(m)].filter(p => LEADERSHIP.includes(p)); return lead.length ? `<div class="mc-organizer" style="color: var(--exec-gold);">Leadership: ${lead.slice(0,4).join(", ")}${lead.length > 4 ? ` +${lead.length - 4}` : ""}</div>` : ""; })()}
      ${(() => {
        const ppl = [...peopleFor(m)];
        const byTeam = new Map();   // core teams -> flat lists
        const byRep = new Map();    // marketing representations -> lists
        ppl.forEach(p => {
          const tm = PERSON_TEAM[p] || "Other";
          if (MARKETING_TEAMS.includes(tm)) {
            marketingRepsOf(p).forEach(r => { if (!byRep.has(r)) byRep.set(r, []); byRep.get(r).push(p); });
          } else {
            if (!byTeam.has(tm)) byTeam.set(tm, []);
            byTeam.get(tm).push(p);
          }
        });
        const repChips = [...byRep.keys()].sort().map(r => `
          <span class="team-drop">
            <button class="team-chip team-toggle tc-rep" data-tt="1">${r} (${byRep.get(r).length}) <span class="tt-caret">&#9662;</span></button>
            <span class="team-people">${byRep.get(r).sort().map(p => `<span class="tp-name">${displayName(p)}</span>`).join("")}</span>
          </span>`);
        const teamChips = [...TEAM_ORDER.filter(t => !MARKETING_TEAMS.includes(t)), "Other"].filter(x => byTeam.has(x)).map(x => `
          <span class="team-drop">
            <button class="team-chip team-toggle" data-tt="1">${x} (${byTeam.get(x).length}) <span class="tt-caret">&#9662;</span></button>
            <span class="team-people">${byTeam.get(x).sort().map(p => `<span class="tp-name">${p}</span>`).join("")}</span>
          </span>`);
        const chips = [...repChips, ...teamChips];
        return chips.length ? `<div class="mc-audience">${chips.join("")}</div>` : "";
      })()}
      ${orgHtml}
    </div>`;
  };

  const countHtml = `<div class="count-strip">
    Showing <strong>${total}</strong> meetings &nbsp;\u00b7&nbsp;
    <strong>${execCount}</strong> executive-relevant &nbsp;\u00b7&nbsp;
    <strong>${completedCount}</strong> completed (hidden) &nbsp;\u00b7&nbsp;
    <strong>${upcomingCount}</strong> upcoming
  </div>`;

  const qfClick = qf => `onclick="document.querySelectorAll('.qf-btn').forEach(b => b.classList.toggle('active', b.dataset.qf === '${qf}')); quickFilter = '${qf}'; render();" style="cursor:pointer;" title="Apply this filter"`;
  const summaryHtml = `<div class="overview-summary">
    <div class="summary-card highlight" ${qfClick("all")}>
      <div class="sc-label">Total Meetings</div>
      <div class="sc-value">${total}</div>
      <div class="sc-sub">Across all workstreams</div>
    </div>
    <div class="summary-card gold" ${qfClick("exec")}>
      <div class="sc-label">Executive-Relevant</div>
      <div class="sc-value">${execCount}</div>
      <div class="sc-sub">Leadership visibility needed</div>
    </div>
    <div class="summary-card" ${qfClick("upcoming")}>
      <div class="sc-label">Upcoming</div>
      <div class="sc-value">${upcomingCount}</div>
      <div class="sc-sub">With scheduled dates</div>
    </div>
    <div class="summary-card" onclick="window.open('https://airtable.com/' + BASE_ID + '/' + TABLE_ID, '_blank')" style="cursor:pointer;" title="Completed meetings are hidden here \u2014 view them in Airtable">
      <div class="sc-label">Completed</div>
      <div class="sc-value">${completedCount}</div>
      <div class="sc-sub">Hidden from view</div>
    </div>
  </div>`;

  let bannerState = "";
  const sectionsHtml = sections.filter(([, arr]) => arr.length).map(([label, arr]) => {
    const state = label === UNTAGGED ? "untagged" : (isActiveWs(arr) ? "active" : "upcoming");
    let banner = "";
    if (state !== bannerState) {
      bannerState = state;
      if (state === "active") banner = `<div class="ws-banner">Active Workstreams</div>`;
      else if (state === "upcoming") banner = `<div class="ws-banner ws-upcoming">Upcoming Work <span class="section-count">not yet started \u00b7 first session more than 2 weeks out or undated</span></div>`;
    }
    return banner + (() => {
    const up = arr.filter(m => !isDone(m)).length, dn = arr.length - up;
    const topicInfo = TOPICS.find(x => x.name === label);
    const hasCtx = topicInfo && (topicInfo.whatIs || topicInfo.why || topicInfo.inputs || topicInfo.next);
    const editLink = topicInfo && TOPIC_IDS[label] ? `<a class="airtable-link" href="https://airtable.com/${BASE_ID}/${TOPIC_TABLE}/${TOPIC_IDS[label]}" target="_blank" rel="noopener" onclick="event.stopPropagation()">Edit in Airtable &#8599;</a>` : "";
    const ctxHtml = topicInfo ? `<details class="topic-about"${hasCtx ? " open" : ""}>
      <summary>About this workstream ${hasCtx ? "" : "<span class='tc-empty'>(not yet filled in)</span>"} ${editLink}</summary>
      <div class="topic-context">${[["What is it?", topicInfo.whatIs], ["Why it's important", topicInfo.why], ["Inputs used", topicInfo.inputs], ["What's next?", topicInfo.next]].map(([l, v]) => `<div class="tc-cell"><div class="tc-label">${l}</div><div class="tc-value${v ? "" : " tc-empty"}">${(v || "\u2014").replace(/</g, "&lt;").replace(/\n/g, "<br>")}</div></div>`).join("")}</div>
    </details>` : "";
    // Cluster related sessions: explicit sub-topic wins, else inferred series;
    // remaining one-off meetings follow in a plain grid.
    const clusters = new Map(); // clusterKey -> {name, arr}
    const loose = [];
    arr.forEach(m => {
      const ck = m.subtopic || SERIES_KEY_OF.get(m.id) || "";
      if (!ck) { loose.push(m); return; }
      if (!clusters.has(ck)) clusters.set(ck, { name: m.subtopic || "", arr: [] });
      clusters.get(ck).arr.push(m);
    });
    // singleton "clusters" (series siblings live in another workstream/filter) fall back to loose
    [...clusters.entries()].forEach(([k, c]) => {
      if (c.arr.length < 2) { loose.push(...c.arr); clusters.delete(k); return; }
      c.arr.sort((a, b) => (displayDate(a) || "9998").localeCompare(displayDate(b) || "9998") || (stageRank(a.title) - stageRank(b.title)) || byTitle(a, b));
      if (!c.name) c.name = seriesDisplayName(SERIES_GROUPS.get(k) || c.arr);
    });
    const nextIn = c => {
      const ds = c.arr.filter(m => !isDone(m)).map(m => displayDate(m)).filter(Boolean);
      return ds.length ? ds.sort()[0] : "9998";
    };
    const orderedClusters = [...clusters.values()].sort((a, b) => nextIn(a).localeCompare(nextIn(b)));
    const relLabel = d => {
      if (!d) return "";
      const wk = Math.floor((new Date(d + "T00:00:00") - new Date(t + "T00:00:00")) / 604800000);
      if (d < t) return "";
      return wk <= 0 ? "next up this week" : wk === 1 ? "next up next week" : `next up in ${wk + 1} weeks`;
    };
    const clustersHtml = orderedClusters.map(c => {
      const nd = nextIn(c), done = c.arr.filter(isDone).length;
      const rel = nd !== "9998" ? relLabel(nd) : (done === c.arr.length ? "all sessions complete" : "next session not yet dated");
      const si = SUBTOPIC_INFO[c.arr[0].subtopic] || null;
      const siCells = si ? [["What is it?", si.whatIs], ["Why it's important", si.why], ["Inputs used", si.inputs], ["What's next?", si.next]].filter(x => x[1]) : [];
      const siHtml = siCells.length ? `<div class="topic-context cluster-context">${siCells.map(([l, v]) => `<div class="tc-cell"><div class="tc-label">${l}</div><div class="tc-value">${v.replace(/</g, "&lt;").replace(/\n/g, "<br>")}</div></div>`).join("")}</div>` : "";
      return `<details class="sub-sec" open><summary class="subtopic-header">${c.name} <span class="section-count">${c.arr.length} sessions \u00b7 ${done} done${rel ? " \u00b7 " + rel : ""}</span></summary>${siHtml}
        <div class="meetings-grid">${c.arr.map(m => renderCard(m)).join("")}</div></details>`;
    }).join("");
    loose.sort(dispSort);
    const looseHtml = loose.length ? `${orderedClusters.length ? `<div class="subtopic-header" style="border-left-color: var(--border-strong, #CFCDC4); color: var(--text-muted, #888);">Other meetings</div>` : ""}
      <div class="meetings-grid">${loose.map(m => renderCard(m)).join("")}</div>` : "";
    const bodyHtml = clustersHtml + looseHtml;
    return `<details class="ws-sec" open><summary class="section-header${label === UNTAGGED ? " untagged-header" : ""}">${label}
      <span class="section-count">${up} upcoming \u00b7 ${dn} completed \u00b7 click to collapse</span></summary>${ctxHtml}${bodyHtml}</details>`;
    })();
  }).join("") || `<div class="empty-state">No meetings match the current filters.</div>`;

  return `${countHtml}<div class="overview-container"><div class="scroll-x">${summaryHtml}</div>${sectionsHtml}</div>`;
}

function renderWeekly() {
  const weekStart = new Date(BASE_WEEK);
  weekStart.setDate(BASE_WEEK.getDate() + weekOffset * 7);
  const days = getWeekDates(weekStart);
  const todayStr = today();

  const weekLabel = `${days[0].toLocaleDateString("en-US", { month: "long", day: "numeric" })} â€“ ${days[4].toLocaleDateString("en-US", { month: "long", day: "numeric", year: "numeric" })}`;

  const meetings = filteredMeetings();

  const nav = `<div class="view-nav">
    <div class="view-nav-title">Weekly Meeting Planner <span>| ${weekLabel}</span></div>
    <div class="nav-arrows">
      <button class="nav-btn" id="prev-week">&#8592;</button>
      <button class="nav-btn" id="today-week">Today</button>
      <button class="nav-btn" id="next-week">&#8594;</button>
    </div>
  </div>`;

  const dayNames = ["Monday", "Tuesday", "Wednesday", "Thursday", "Friday"];

  const cols = days.map((dt, i) => {
    const iso = isoDate(dt);
    const dayMeetings = meetings.filter(m => {
      const dd = displayDate(m);
      return dd === iso;
    });
    const isToday = iso === todayStr;
    const isWknd = false; // Mon-Fri only

    const meetsHtml = dayMeetings.length
      ? dayMeetings.map(m => {
          let cardClass = "week-meeting-card";
          if (m.exec) cardClass += " exec-card";
          else if (m.priority === "High") cardClass += " high-card";
          else if (m.status === "Completed") cardClass += " completed-card";
          return `<div class="${cardClass}" data-mid="${m.id}">
            <div class="wmc-title">${m.title}</div>
            <div class="wmc-meta">
              ${m.duration ? `<span>${m.duration} min</span>` : ""}
              ${m.organizer.length ? `<span>by ${m.organizer[0]}</span>` : ""}
              ${m.audience.length ? `<span>${m.audience.join(", ")}</span>` : ""}
            </div>
            <div class="wmc-badges">${execBadge(m)}${priorityBadge(m)}${statusBadge(m)}</div>
          </div>`;
        }).join("")
      : `<div class="day-empty">No meetings</div>`;

    return `<div class="day-col">
      <div class="day-header">
        <div class="day-name">${dayNames[i]}</div>
        <div class="day-date${isToday ? " today" : ""}">${dt.toLocaleDateString("en-US", { month: "short", day: "numeric" })}</div>
      </div>
      <div class="day-meetings">${meetsHtml}</div>
    </div>`;
  }).join("");

  return `${nav}<div class="scroll-x" style="flex:1; display:flex; flex-direction:column; min-height:0;"><div class="week-grid" style="flex:1;">${cols}</div></div>`;
}

function renderMonthly() {
  const { year, month } = { year: BASE_MONTH.year, month: BASE_MONTH.month };
  const adjMonth = month + monthOffset;
  const adjYear = year + Math.floor(adjMonth / 12);
  const adjM = ((adjMonth % 12) + 12) % 12;

  const monthLabel = new Date(adjYear, adjM, 1).toLocaleDateString("en-US", { month: "long", year: "numeric" });

  const firstDay = new Date(adjYear, adjM, 1);
  const lastDay = new Date(adjYear, adjM + 1, 0);
  const todayStr = today();
  const meetings = filteredMeetings();

  // Build calendar grid (Mon-Fri only)
  // Find the Monday on or before firstDay
  const startDow = firstDay.getDay(); // 0=Sun
  const offsetToMon = (startDow === 0) ? 1 : (startDow === 1 ? 0 : -(startDow - 1));
  const gridStart = new Date(firstDay);
  gridStart.setDate(firstDay.getDate() + offsetToMon);

  const nav = `<div class="view-nav">
    <div class="view-nav-title">${monthLabel}</div>
    <div class="nav-arrows">
      <button class="nav-btn" id="prev-month">&#8592;</button>
      <button class="nav-btn" id="today-month">Today</button>
      <button class="nav-btn" id="next-month">&#8594;</button>
    </div>
  </div>`;

  const dayNames = ["Mon", "Tue", "Wed", "Thu", "Fri"];
  const headerRow = dayNames.map(d => `<div class="month-day-name">${d}</div>`).join("");

  // Build 5 or 6 weeks
  const cells = [];
  let cursor = new Date(gridStart);
  while (cursor.getMonth() === adjM || cursor <= lastDay) {
    for (let i = 0; i < 5; i++) {
      const iso = isoDate(cursor);
      const inMonth = cursor.getMonth() === adjM;
      const isToday = iso === todayStr;
      const dayMeetings = meetings.filter(m => displayDate(m) === iso);

      const MAX_PILLS = 3;
      const pillsHtml = dayMeetings.slice(0, MAX_PILLS).map(m => {
        let cls = "month-meeting-pill";
        if (m.type === "OOO") cls += " ooo-pill";
        else if (m.exec) cls += " exec-pill";
        else if (m.priority === "High") cls += " high-pill";
        else if (m.status === "Completed") cls += " completed-pill";
        return `<div class="${cls}" data-mid="${m.id}" title="${m.title}">${m.title}</div>`;
      }).join("");
      const overflowHtml = dayMeetings.length > MAX_PILLS
        ? `<div class="cell-overflow">+${dayMeetings.length - MAX_PILLS} more</div>`
        : "";

      const dateNumHtml = isToday
        ? `<div class="cell-date"><span class="today-num">${cursor.getDate()}</span></div>`
        : `<div class="cell-date${!inMonth ? '" style="opacity:0.3"' : '"'}>${cursor.getDate()}</div>`;

      let cellCls = "month-cell";
      if (!inMonth) cellCls += " other-month";
      if (isToday) cellCls += " today-cell";

      cells.push(`<div class="${cellCls}">${dateNumHtml}${pillsHtml}${overflowHtml}</div>`);
      cursor.setDate(cursor.getDate() + 1);
    }
    // Skip Sat/Sun
    cursor.setDate(cursor.getDate() + 2);
    if (cursor.getMonth() !== adjM && cursor > lastDay) break;
  }

  const gridHtml = `<div class="month-grid" style="grid-template-rows: auto ${Array.from({ length: Math.ceil(cells.length / 5) }, () => '1fr').join(' ')};">
    ${headerRow}
    ${cells.join("")}
  </div>`;

  return `${nav}<div class="month-grid-wrap">${gridHtml}</div>`;
}

// â”€â”€â”€ INIT & EVENT HANDLING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€


// --- ROADMAP ---
function renderRoadmap() {
  const meetings = filteredMeetings().filter(m => m.type !== "OOO");
  const t = today();
  const T0 = new Date("2026-06-29T00:00:00"), T1 = new Date("2026-09-04T00:00:00");
  const DAYS = Math.round((T1 - T0) / 86400000) + 1;
  const dayIdx = iso => Math.round((new Date(iso + "T00:00:00") - T0) / 86400000);
  const cols = `200px repeat(${DAYS}, minmax(9px, 1fr))`;
  // Week tick labels on Mondays
  const ticks = [];
  for (let i = 0; i < DAYS; i++) {
    const d = new Date(T0); d.setDate(T0.getDate() + i);
    if (d.getDay() === 1) ticks.push({ i, label: d.toLocaleDateString("en-US", { month: "short", day: "numeric" }) });
  }
  const todayI = dayIdx(t);
  const headHtml = `<div class="rm-row rm-head" style="grid-template-columns: ${cols};">
    <div class="rm-topic">Workstream</div>
    ${ticks.map(x => `<div class="rm-tick" style="grid-column: ${x.i + 2} / span 7;">${x.label}</div>`).join("")}
  </div>`;
  const groups = new Map();
  const UNTAGGED = "No Workstream Assigned";
  meetings.forEach(m => {
    const key = m.topic || UNTAGGED;
    if (!groups.has(key)) groups.set(key, []);
    groups.get(key).push(m);
  });
  const rowFor = (topic, arr) => {
    const dated = arr.filter(m => displayDate(m)).sort((a, b) => displayDate(a).localeCompare(displayDate(b)));
    if (!dated.length) return "";
    const bars = dated.map(m => {
      const span = meetingSpan(m);
      const s = span ? span.start : displayDate(m), e = span ? span.end : displayDate(m);
      let c0 = dayIdx(s), c1 = dayIdx(e);
      if (c1 < 0 || c0 > DAYS - 1) return "";
      c0 = Math.max(c0, 0); c1 = Math.min(c1, DAYS - 1);
      const done = m.status === "Completed" || (e < t);
      const wide = c1 - c0 >= 4;
      return `<div class="rm-bar${done ? " rm-done" : ""}${m.exec ? " rm-exec" : ""}" data-mid="${m.id}"
        style="grid-column: ${c0 + 2} / ${c1 + 3};" title="${m.title} (${formatDateLabel(s)}${s !== e ? " \u2013 " + formatDateLabel(e) : ""})">${wide ? m.title : `<span class="rm-dotlabel">${m.title}</span>`}</div>`;
    }).filter(Boolean).join("");
    if (!bars) return "";
    return `<div class="rm-row" style="grid-template-columns: ${cols};">
      <div class="rm-topic">${topic}</div>
      <div class="rm-today" style="grid-column: ${todayI + 2};"></div>${bars}
    </div>`;
  };
  const rows = [...groups.entries()].filter(([k]) => k !== UNTAGGED)
    .sort((a, b) => a[0].localeCompare(b[0]))
    .map(([topic, arr]) => rowFor(topic, arr)).join("");
  const unt = groups.get(UNTAGGED) || [];
  const untDated = unt.filter(m => displayDate(m)).length;
  const untHtml = unt.length ? `<details class="rm-untagged"><summary>No Workstream Assigned \u00b7 ${unt.length} meetings (${untDated} dated) \u2014 tag a Marketing Topic in Airtable to place them on the roadmap</summary>${rowFor("Unassigned", unt)}</details>` : "";
  return `<div class="view-nav"><div class="view-nav-title">Workstream Roadmap <span>| Jun 29 \u2013 Sep 4, 2026 \u00b7 green line = today \u00b7 dated meetings only</span></div></div>
    <div class="scroll-x"><div class="roadmap">${headHtml}${rows || '<div class="empty-state">No dated meetings match the current filters.</div>'}${untHtml}</div></div>`;
}

// --- MY VIEW ---
function renderMyView() {
  const person = personFilter;
  if (!person) return `<div class="empty-state" style="margin-top:30px;">Pick a person in the <strong>Person</strong> dropdown above to see their meetings, feedback owed, and open items.</div>`;
  const t = today();
  const team = PERSON_TEAM[person] || "";
  const isStakeholder = !CORE_GROUPS.includes(PERSON_TEAM[person] || "");
  const mine = MEETINGS.filter(m => m.type !== "OOO" && m.status !== "Completed" && (!isStakeholder || m.exec) && peopleFor(m).has(person)); // exec-only for marketing stakeholders
  const notDone = m => m.status !== "Completed" && !(m.actual && m.actual < t);
  const upcoming = mine.filter(notDone).sort((a, b) => {
    const da = displayDate(a) || "9999", db = displayDate(b) || "9999";
    const sa = displayDate(a) && displayDate(a) < t, sb = displayDate(b) && displayDate(b) < t; // slipped first
    if (sa !== sb) return sa ? -1 : 1;
    return da.localeCompare(db);
  });
  const week = new Date(t + "T00:00:00"); week.setDate(week.getDate() + 7); const weekIso = isoDate(week);
  const thisWeek = upcoming.filter(m => displayDate(m) && displayDate(m) <= weekIso);
  // by workstream counts
  const byTopic = new Map();
  upcoming.forEach(m => { const k = m.topic || "No Workstream Assigned"; byTopic.set(k, (byTopic.get(k) || 0) + 1); });
  const topicChips = [...byTopic.entries()].sort((a, b) => b[1] - a[1]).map(([k, n]) => `<span class="audience-chip chip-click" onclick="goOverview()" title="Open the Overview tab">${k}: <strong>${n}</strong></span>`).join("");
  // feedback owed: doc exists, person involved, meeting happened recently or is upcoming
  // Feedback due, two kinds:
  // (a) Pre-work: an upcoming dated meeting with a questionnaire/doc â€” complete it 2 days before the session.
  // (b) Findings sign-off: a findings doc naming this person with an unchecked box, anchored to the review due date.
  const minus2 = iso => { const d = new Date(iso + "T00:00:00"); d.setDate(d.getDate() - 2); return isoDate(d); };
  const prework = mine.filter(m => {
    const d = displayDate(m);
    return d && d >= t && m.feedback && m.feedback.length && !soList(m.id).length;
  }).map(m => ({ kind: "prework", m, due: minus2(displayDate(m)) }));
  const signoffs = MEETINGS.flatMap(m => soList(m.id).filter(so => so.pending.includes(person))
    .map(so => ({ kind: "signoff", m, so, due: so.due || "" })));
  const byDue = (a, b) => (a.due || "9999").localeCompare(b.due || "9999");
  signoffs.sort(byDue); prework.sort(byDue);
  const owed = [...signoffs, ...prework];
  const datedItems = OPEN_ITEMS.filter(o => o.owners.includes(person) && o.status !== "Done" && o.due)
    .sort((a, b) => a.due.localeCompare(b.due));
  const undatedList = OPEN_ITEMS.filter(o => o.owners.includes(person) && o.status !== "Done" && !o.due);
  const items = showUndated ? [...datedItems, ...undatedList] : datedItems;
  const undatedItems = undatedList.length;
  const rowM = m => {
    const d = displayDate(m);
    const span = meetingSpan(m);
    const slippedRow = d && d < t && !m.actual;
    const dl = span ? `${formatDateLabel(span.start)} \u2013 ${formatDateLabel(span.end)}` : (d ? (slippedRow ? formatDateLabel(d) + " \u26a0" : formatDateLabel(d)) : "TBD");
    return `<div class="mv-row" data-mid="${m.id}">
      <span class="mv-date${d && d <= weekIso && d >= t ? " mv-soon" : ""}">${dl}</span>
      <span class="mv-title">${m.title}</span>
      <span class="mv-tags">${m.topic ? `<span class="audience-chip">${m.topic}</span>` : ""}${execBadge(m)}</span>
    </div>`;
  };
  const rowF = o => {
    const m = o.m;
    const links = m.feedback.map(f => `<a class="airtable-link" href="${f.url}" target="_blank" rel="noopener" onclick="event.stopPropagation()">${f.label} &#8599;</a>`).join(" \u00b7 ");
    const overdue = o.due && o.due < t, soon = o.due && !overdue && o.due <= weekIso;
    if (o.kind === "signoff") {
      const so = o.so;
      const docLink = so.url ? `<a class="airtable-link" href="${so.url}" target="_blank" rel="noopener" onclick="event.stopPropagation()">${so.doc} &#8599;</a>` : links;
      return `<div class="mv-row" data-mid="${m.id}">
        <span class="mv-date${overdue ? " mv-over" : soon ? " mv-soon" : ""}">${o.due ? formatDateLabel(o.due) : "\u2014"}</span>
        <span class="mv-title">Sign off: ${so.doc.replace("CBRE Tech Discovery ", "").replace(".docx", "")}
          <div class="mv-links">Findings from ${so.meeting} \u00b7 your box is unchecked (as of ${formatDateLabel(so.asOf)}) \u00b7 ${so.pending.length} still owed</div>
          <div class="mv-links">${docLink}</div></span>
        <span class="mv-tags"><span class="badge badge-high">Findings sign-off</span></span>
      </div>`;
    }
    return `<div class="mv-row" data-mid="${m.id}">
      <span class="mv-date${overdue ? " mv-over" : soon ? " mv-soon" : ""}">${formatDateLabel(o.due)}</span>
      <span class="mv-title">Pre-work: ${m.title}
        <div class="mv-links">Complete before the ${formatDateLabel(displayDate(m))} session (due 2 days prior so Globant can review)</div>
        <div class="mv-links">${links}</div></span>
      <span class="mv-tags"><span class="badge badge-waiting" style="color:#C87500;">Pre-work due</span></span>
    </div>`;
  };
  const OI_TABLE = "tblFuk06ZsgLP9Ny0";
  const rowI = o => {
    const overdue = o.due && o.due < t, soon = o.due && !overdue && o.due <= weekIso;
    const atUrl = `https://airtable.com/${BASE_ID}/${OI_TABLE}/${o.id}`;
    const docLinks = (o.links || []).map(l => `<a class="airtable-link" href="${l.url}" target="_blank" rel="noopener" onclick="event.stopPropagation()">${l.label.replace(/</g, "&lt;")} &#8599;</a>`).join(" \u00b7 ");
    return `<div class="mv-row" onclick="window.open('${atUrl.replace(/'/g, "\\'")}', '_blank')">
      <span class="mv-date${overdue ? " mv-over" : soon ? " mv-soon" : ""}">${o.due ? formatDateLabel(o.due) : "\u2014"}</span>
      <span class="mv-title">${o.name}${o.note ? `<div class="mv-links">${o.note.replace(/</g, "&lt;")}</div>` : ""}${o.source ? `<div class="mv-links">From: ${o.source.replace(/</g, "&lt;")}</div>` : ""}${docLinks ? `<div class="mv-links">Docs: ${docLinks}</div>` : ""}</span>
      <span class="mv-tags">${o.risk ? `<span class="badge badge-high">${o.risk}</span>` : ""}${o.priority === "High" ? `<span class="badge badge-high">High</span>` : ""}<span class="badge badge-scheduled">${o.status}</span> <span class="mv-links">Airtable &#8599;</span></span>
    </div>`;
  };
  const tw = { mtg: thisWeek.reduce((s, m) => s + (m.duration || 45), 0), fb: owed.length * FEEDBACK_EFFORT_MIN };
  const twOwed = owed.filter(o => { const d = o.due; return !d || d <= weekIso; });
  const timeLine = `<div class="mv-chips"><span class="audience-chip chip-click" style="font-size:12px;" onclick="goTab(&quot;weekly&quot;)" title="Open the Weekly calendar">&#9201; Next 7 days: <strong>${Math.round(tw.mtg / 60 * 10) / 10}h</strong> in meetings${tw.fb ? ` + <strong>~${Math.round(tw.fb / 60 * 10) / 10}h</strong> feedback` : ""}${twOwed.length ? ` \u00b7 ${twOwed.length} feedback item${twOwed.length > 1 ? "s" : ""} due this week` : ""} <span style="opacity:.6;">(feedback est. ${FEEDBACK_EFFORT_MIN} min/doc)</span></span></div>`;
  const sect = (title, sub, inner) => `<div class="section-header">${title} <span class="section-count">${sub}</span></div>${inner || '<div class="mv-empty">Nothing here right now.</div>'}`;
  return `<div class="view-nav"><div class="view-nav-title">${person} <span>| ${team || "No team on file"} \u00b7 ${upcoming.length} upcoming meetings \u00b7 ${owed.length} feedback items \u00b7 ${items.length} open items</span></div></div>
    ${timeLine}
    <div class="mv-chips">${topicChips}</div>
    ${sect("Meetings in Next 7 Days", thisWeek.length + " between today and " + formatDateLabel(weekIso), thisWeek.map(rowM).join(""))}
    ${sect("Feedback You Owe", "pre-work due 2 days before each session, plus findings docs awaiting your sign-off",
      (signoffs.length || prework.length) ? `
        ${signoffs.length ? `<div class="mv-subhead">Findings Sign-offs <span class="section-count">${signoffs.length} \u00b7 by due date</span></div>` + signoffs.map(rowF).join("") : ""}
        ${prework.length ? `<div class="mv-subhead">Pre-work for Upcoming Sessions <span class="section-count">${prework.length} \u00b7 due 2 days before each session</span></div>` + prework.map(rowF).join("") : ""}` : "")}
    ${sect("Your Open Items", (showUndated ? "including items without due dates" : "dated items only") + (undatedItems ? ` \u00b7 <span class='chip-click airtable-link' onclick='toggleUndated()'>${showUndated ? "hide" : "show"} ${undatedItems} without due dates</span>` : ""), items.map(rowI).join(""))}
    ${sect("All Upcoming Meetings", upcoming.length + (isStakeholder ? " executive-relevant" : " total") + " \u00b7 target dates used when not yet scheduled \u00b7 \u26a0 = target passed, needs rescheduling \u00b7 TBD last", upcoming.map(rowM).join(""))}`;
}



function goTab(tab) {
  activeTab = tab;
  document.querySelectorAll(".tab-btn").forEach(b => b.classList.toggle("active", b.dataset.tab === tab));
  render();
}
function goOverview() { goTab("overview"); }
let showUndated = false;
function toggleUndated() { showUndated = !showUndated; render(); }

// --- WEEKLY RECAP (transcript digest) ---
function renderRecap() {
  const person = personFilter;
  const entries = DIGEST.meetings.filter(d => {
    if (!person) return true;
    if (d.attended && d.attended.includes(person)) return true;
    const m = d.mid ? MEETINGS.find(x => x.id === d.mid) : null;
    return m ? peopleFor(m).has(person) : false;
  });
  const fmt = d => new Date(d + "T00:00:00").toLocaleDateString("en-US", { weekday: "short", month: "short", day: "numeric" });
  const wk0 = fmt(DIGEST.weekOf);
  const cards = entries.map(d => {
    const m = d.mid ? MEETINGS.find(x => x.id === d.mid) : null;
    const topic = m && m.topic ? `<span class="audience-chip chip-click" onclick="event.stopPropagation(); goOverview()" title="Open Overview">${m.topic}</span>` : "";
    if (d.noTranscript) return `<div class="recap-card recap-empty"${d.mid ? ` data-mid="${d.mid}"` : ""}>
      <div class="mc-header"><div class="mc-title">${d.title}</div><div class="badges"><span class="badge badge-waiting">No transcript yet</span></div></div>
      <div class="mc-meta"><span class="mc-meta-item">${fmt(d.date)}</span>${topic}</div>
      <div class="mv-links">Not yet covered in the weekly recap doc as of ${fmt(DIGEST.generated)} â€” recap will appear on the next refresh once the transcript is posted.</div>
    </div>`;
    return `<div class="recap-card"${d.mid ? ` data-mid="${d.mid}"` : ""}>
      <div class="mc-header"><div class="mc-title">${d.title}</div><div class="badges">${topic}</div></div>
      <div class="mc-meta"><span class="mc-meta-item">${fmt(d.date)}</span>
        ${d.attended ? `<span class="mc-meta-item">${d.attended.slice(0, 4).join(", ")}${d.attended.length > 4 ? ` +${d.attended.length - 4}` : ""}</span>` : ""}</div>
      ${d.note ? `<div class="mv-links">\u26a0 ${d.note}</div>` : ""}
      <div class="mc-purpose">${d.summary.replace(/</g, "&lt;")}</div>
      <details class="recap-details"><summary>Decisions (${d.decisions.length}) & Action Items (${d.actions.length})</summary>
        <div class="tc-label" style="margin-top:8px;">Decisions</div>
        <ul class="recap-list">${d.decisions.map(x => `<li>${x.replace(/</g, "&lt;")}</li>`).join("")}</ul>
        <div class="tc-label">Action Items</div>
        <ul class="recap-list">${d.actions.map(a => `<li>${a.item.replace(/</g, "&lt;")}${a.owner ? ` <strong>\u2014 ${a.owner}</strong>` : ""}</li>`).join("")}</ul>
      </details>
      <div class="mv-links">${d.transcriptUrl ? `<a class="airtable-link" href="${d.transcriptUrl}" target="_blank" rel="noopener" onclick="event.stopPropagation()">Meeting record / transcript &#8599;</a>` : `<span>Record link not captured in this refresh</span>`}</div>
    </div>`;
  }).join("");
  return `<div class="view-nav"><div class="view-nav-title">Weekly Recap <span>| ${DIGEST.label || ("Week of " + wk0)} \u00b7 generated ${fmt(DIGEST.generated)}${DIGEST.sourceUrl ? ` \u00b7 source: <a class="airtable-link" href="${DIGEST.sourceUrl}" target="_blank" rel="noopener">${DIGEST.source || "meeting records"} &#8599;</a>` : ""} \u2014 verify against the record before acting</span></div></div>
    ${person ? `<div class="mv-chips"><span class="audience-chip">Filtered to meetings involving <strong>${person}</strong></span></div>` : ""}
    <div class="meetings-grid" style="grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));">${cards || '<div class="empty-state">No recapped meetings match the current filters.</div>'}</div>`;
}

function populateFilters() {
  const personSel = document.getElementById("person-filter");
  const PROJECT_TEAM = ["Kristen Swenson", "Laura Hahn", "Lisa Anderson", "Kathleen Garwood", "Ganesh Prabu", "Eddie Wong", "Ted Murena", "Craig Stover", "Alexandra Cazangiu", "Erin Moulesong", "Andrew Nadel", "Subhabrat Padhi", "Kirdric Hill"];
  const LEADERSHIP_GROUP = ["Benji Baer", "Nick Jablonski", "Michelle Crecca", "Jennifer Morgan", "Debbie Celado", "Amanda Borders", "Nadia Husty", "TJ McCormick"];
  const allPeople = new Set();
  Object.values(GROUP_MEMBERS).forEach(arr => arr.forEach(p => allPeople.add(p)));
  Object.keys(PERSON_TEAM).forEach(p => allPeople.add(p));
  MEETINGS.forEach(m => m.organizer.forEach(p => allPeople.add(p)));
  const placed = new Set([...PROJECT_TEAM, ...LEADERSHIP_GROUP]);
  const addGroup = (label, names) => {
    if (!names.length) return;
    const og = document.createElement("optgroup"); og.label = label;
    names.forEach(p => { const o = document.createElement("option"); o.value = p; o.textContent = p; og.appendChild(o); });
    personSel.appendChild(og);
  };
  addGroup("Project Team", PROJECT_TEAM);
  addGroup("Leadership", LEADERSHIP_GROUP);
  // Everyone else, grouped by their team
  const rest = [...allPeople].filter(p => !placed.has(p));
  TEAM_ORDER.concat(["Other"]).forEach(team => {
    const names = rest.filter(p => (PERSON_TEAM[p] || "Other") === team).sort();
    addGroup(team, names);
  });
  personSel.onchange = e => { personFilter = e.target.value; render(); };
  const groupSel = document.getElementById("group-filter");
  GROUPS.forEach(g => {
    const opt = document.createElement("option");
    opt.value = g;
    opt.textContent = g;
    groupSel.appendChild(opt);
  });
}

function render() {
  const content = document.getElementById("main-content");
  if (activeTab === "overview") content.innerHTML = renderOverview();
  else if (activeTab === "weekly") content.innerHTML = renderWeekly();
  else if (activeTab === "monthly") content.innerHTML = renderMonthly();
  else if (activeTab === "myview") content.innerHTML = renderMyView();
  else if (activeTab === "recap") content.innerHTML = renderRecap();

  // Attach nav buttons
  const prevW = document.getElementById("prev-week");
  const nextW = document.getElementById("next-week");
  const todW = document.getElementById("today-week");
  if (prevW) prevW.onclick = () => { weekOffset--; render(); };
  if (nextW) nextW.onclick = () => { weekOffset++; render(); };
  if (todW) todW.onclick = () => { weekOffset = 0; render(); };

  const prevM = document.getElementById("prev-month");
  const nextM = document.getElementById("next-month");
  const todM = document.getElementById("today-month");
  if (prevM) prevM.onclick = () => { monthOffset--; render(); };
  if (nextM) nextM.onclick = () => { monthOffset++; render(); };
  if (todM) todM.onclick = () => { monthOffset = 0; render(); };
  wireClicks();
}

// Tabs
document.querySelectorAll(".tab-btn").forEach(btn => {
  btn.onclick = () => {
    document.querySelectorAll(".tab-btn").forEach(b => b.classList.remove("active"));
    btn.classList.add("active");
    activeTab = btn.dataset.tab;
    render();
  };
});

// Quick filters
document.querySelectorAll(".qf-btn").forEach(btn => {
  btn.onclick = () => {
    document.querySelectorAll(".qf-btn").forEach(b => b.classList.remove("active"));
    btn.classList.add("active");
    quickFilter = btn.dataset.qf;
    render();
  };
});

// Dropdowns
document.getElementById("group-filter").onchange = e => { groupFilter = e.target.value; render(); };


// --- DETAIL MODAL ---
const BASE_ID = "appHL2Wp1iQb2Hjp4", TABLE_ID = "tblR4rP4MDd9W20Jv";

function openModal(m) {
  document.getElementById("modal-title").textContent = m.title;
  const dd = displayDate(m);
  const sp = meetingSpan(m);
  const dateLabel = sp ? formatDateLabel(sp.start) + " \u2013 " + formatDateLabel(sp.end) + " (multi-day)" : (dd ? (m.actual ? formatDateLabel(dd) : "Target: " + formatDateLabel(dd)) : "Date TBD");
  const metaRows = [
    ["Date", dateLabel],
    ["Status", m.status || (m.cadence && m.cadence.startsWith("Recurring") ? "Recurring" : "Not yet scheduled")],
    ["Time Commitment", commitmentLabel(m) || "\u2014"],
    ["Cadence", m.cadence || "\u2014"],
    ["Priority", m.priority || "\u2014"],
    ["Type", m.type + (m.exec ? " \u00b7 Executive Relevant" : "") + (m.tech ? " \u00b7 Tech Focused" : "")],
    ["Series", SERIES.has(m.id) ? "Session " + SERIES.get(m.id).n + " of " + SERIES.get(m.id).of : "Standalone"],
  ];
  let body = '<div class="modal-meta-grid">' + metaRows.map(([l,v]) =>
    '<div class="modal-section"><div class="ms-label">' + l + '</div><div class="ms-value">' + v + '</div></div>'
  ).join("") + '</div>';
  if (m.purpose) body += '<div class="modal-section"><div class="ms-label">Purpose</div><div class="ms-value">' + m.purpose.replace(/</g,"&lt;") + '</div></div>';
  const dg = DIGEST.meetings.find(d => d.mid === m.id && !d.noTranscript);
  if (dg) {
    body += '<div class="modal-section"><div class="ms-label">Recap (week of ' + formatDateLabel(DIGEST.weekOf) + ')</div><div class="ms-value">' + dg.summary.replace(/</g,"&lt;") + '</div></div>';
    if (dg.decisions && dg.decisions.length) body += '<div class="modal-section"><div class="ms-label">Decisions</div><ul class="recap-list">' + dg.decisions.map(x => '<li>' + x.replace(/</g,"&lt;") + '</li>').join("") + '</ul></div>';
    if (dg.actions && dg.actions.length) body += '<div class="modal-section"><div class="ms-label">Action Items</div><ul class="recap-list">' + dg.actions.map(a => '<li>' + a.item.replace(/</g,"&lt;") + (a.owner ? ' <strong>\u2014 ' + a.owner + '</strong>' : '') + '</li>').join("") + '</ul></div>';
    if (dg.transcriptUrl) body += '<div class="modal-section"><div class="ms-value"><a class="airtable-link" href="' + dg.transcriptUrl + '" target="_blank" rel="noopener">Meeting record &#8599;</a></div></div>';
  }
  if (m.audience.length) body += '<div class="modal-section"><div class="ms-label">Audience</div><div class="mc-audience">' + m.audience.map(a => '<span class="audience-chip">' + a + '</span>').join("") + '</div></div>';
  const ppl = [...peopleFor(m)].filter(p => !m.organizer.includes(p)).sort();
  if (ppl.length) {
    const byTeam = new Map(), byRep = new Map();
    ppl.forEach(p => {
      const tm = PERSON_TEAM[p] || "Other";
      if (MARKETING_TEAMS.includes(tm)) marketingRepsOf(p).forEach(r => { if (!byRep.has(r)) byRep.set(r, []); byRep.get(r).push(p); });
      else { if (!byTeam.has(tm)) byTeam.set(tm, []); byTeam.get(tm).push(p); }
    });
    const repBlocks = [...byRep.keys()].sort().map(r =>
      '<div class="mv-links" style="margin-bottom:5px;"><strong>' + r + ' (' + byRep.get(r).length + '):</strong> ' + byRep.get(r).sort().map(displayName).join(", ") + '</div>').join("");
    const teamBlocks = [...TEAM_ORDER.filter(t => !MARKETING_TEAMS.includes(t)), "Other"].filter(tm => byTeam.has(tm)).map(tm =>
      '<div class="mv-links" style="margin-bottom:5px;"><strong>' + tm + ' (' + byTeam.get(tm).length + '):</strong> ' + byTeam.get(tm).sort().join(", ") + '</div>').join("");
    body += '<div class="modal-section"><div class="ms-label">People Involved (' + ppl.length + ')</div>' + repBlocks + teamBlocks + '</div>';
  }
  const sos = soList(m.id);
  if (sos.length) {
    sos.forEach(so => {
      body += '<div class="modal-section"><div class="ms-label">Sign-off Status â€” ' + so.doc + ' (from doc, as of ' + formatDateLabel(so.asOf) + ')</div><div class="ms-value">'
        + (so.pending.length ? '<strong>Still owed (' + so.pending.length + '):</strong> ' + so.pending.join(", ") + '<br>' : '')
        + (so.done.length ? '<span style="color: var(--completed, #1D7044);"><strong>Signed off (' + so.done.length + '):</strong> ' + so.done.join(", ") + '</span>' : '') + '</div></div>';
    });
  } else if (m.feedback && m.feedback.length) {
    const dmOwers = [...peopleFor(m)].filter(p => (PERSON_TEAM[p] || "") === "CBRE DM");
    if (dmOwers.length) body += '<div class="modal-section"><div class="ms-label">Feedback Expected From</div><div class="ms-value">CBRE DM on invite: ' + dmOwers.sort().join(", ") + (feedbackMentioned(m) ? '<br>Plus external stakeholders named in the purpose/agenda.' : '') + '</div></div>';
  }
  if (m.organizer.length) body += '<div class="modal-section"><div class="ms-label">Organizer</div><div class="ms-value">' + m.organizer.join(", ") + '</div></div>';
  if (m.feedback && m.feedback.length) body += '<div class="modal-section"><div class="ms-label">Feedback Location</div><div class="ms-value">' + m.feedback.map(f => '<a class="airtable-link" href="' + f.url + '" target="_blank" rel="noopener">' + f.label + ' &#8599;</a>').join("<br>") + '</div></div>';
  document.getElementById("modal-body").innerHTML = body;
  document.getElementById("modal-footer").innerHTML =
    '<a class="airtable-link" href="https://airtable.com/' + BASE_ID + '/' + TABLE_ID + '/' + m.id + '" target="_blank" rel="noopener">Open in Airtable &#8599;</a>';
  document.getElementById("modal-overlay").classList.add("open");
}

document.getElementById("modal-close").onclick = () => document.getElementById("modal-overlay").classList.remove("open");
document.getElementById("modal-overlay").onclick = e => { if (e.target.id === "modal-overlay") e.target.classList.remove("open"); };
document.addEventListener("keydown", e => { if (e.key === "Escape") document.getElementById("modal-overlay").classList.remove("open"); });

function wireClicks() {
  document.querySelectorAll("[data-mid]").forEach(el => {
    el.onclick = e => {
      const tt = e.target.closest(".team-toggle");
      if (tt) { tt.parentElement.classList.toggle("open"); e.stopPropagation(); return; }
      const m = MEETINGS.find(x => x.id === el.dataset.mid); if (m) openModal(m);
    };
  });
}

populateFilters();
render();
</script>
</body>
</html>
